A bit more code from the Form_Wizard
----------------------------------------------------------------------
class FormWizardComponent extends Object {
var $ways = null;
var $_prefixWizard;
var $_wizardData = array();
var $_way = null;
var $_fctname;
var $_curstep;
var $controller;
var $params;
var $data;
var $Session;
/**
* startup the Wizard
*
* @param array $ways An array containing all the wizard ways
* @param string $prefix Wizard session var names are prefixed by
$prefix
* @return
*/
function startup(&$controller) {
$this->controller= &$controller;
$this->Session= &$controller->Session;
$this->params = &$controller->params;
$this->data = &$controller->data;
}
----------------------------------------------------------------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---