added an accessor method for $this->session

This commit is contained in:
Sean Harvey 2008-05-14 10:22:58 +00:00
parent f5f93fb10e
commit 56325faf8f
1 changed files with 8 additions and 0 deletions

View File

@ -164,6 +164,14 @@ abstract class MultiForm extends Form {
$this->session->write();
}
/**
* Accessor method to $this->session.
* @return MultiFormSession
*/
function getSession() {
return $this->session;
}
/**
* Set up the session.
*