Пример #1
0
 /**
  * Constructor
  * @param ref object $stepContainer A {@link WizardStepContainer} object.
  * @access public
  * @return void
  */
 function __construct($stepContainer)
 {
     parent::__construct();
     $this->setLabel(_("<-- Back"));
     $this->_stepContainer = $stepContainer;
     $this->addOnClick("ignoreValidation(this.form);");
 }
 /**
  * Constructor
  * @param ref object $stepContainer A {@link WizardStepContainer} object.
  * @access public
  * @return void
  */
 function __construct($stepContainer, $label = null)
 {
     parent::__construct();
     if (is_null($label)) {
         $label = dgettext("polyphony", "Next");
     }
     $this->setLabel($label);
     $this->_stepContainer = $stepContainer;
 }
Пример #3
0
 function __construct($label = null)
 {
     parent::__construct();
     if (is_null($label)) {
         $label = dgettext("polyphony", "Cancel");
     }
     $this->setEventAndLabel("edu.middlebury.polyphony.wizard.cancel", $label);
     $this->addOnClick("ignoreValidation(this.form);");
 }
Пример #4
0
 /**
  * Constructor
  * @param ref object $stepContainer A {@link WizardStepContainer} object.
  * @access public
  * @return void
  */
 function __construct($stepContainer)
 {
     parent::__construct();
     $this->setLabel(_("Forward -->"));
     $this->_stepContainer = $stepContainer;
 }
Пример #5
0
 function __construct()
 {
     parent::__construct();
     $this->setEventAndLabel("edu.middlebury.polyphony.wizard.save", dgettext("polyphony", "Save"));
 }
 /**
  * constructor
  * 
  * @return void
  * @access public
  * @since 5/31/06
  */
 function __construct($stepContainer)
 {
     parent::__construct();
     $this->setEventAndLabel("edu.middlebury.polyphony.wizard.save", 'Save Changes and Continue');
     $this->_stepContainer = $stepContainer;
 }
 /**
  * Constructor
  * @param ref object $stepContainer A {@link WizardStepContainer} object.
  * @access public
  * @return void
  */
 function __construct($stepContainer)
 {
     parent::__construct();
     $this->setLabel(_("Previous"));
     $this->_stepContainer = $stepContainer;
 }