removedWizardStep() публичный Метод

This method should only be used by control developers. It is invoked when a step is removed from the step collection of the wizard.
public removedWizardStep ( $step )
Пример #1
0
 /**
  * Removes an item at the specified position.
  * @param integer the index of the item to be removed.
  * @return mixed the removed item.
  */
 public function removeAt($index)
 {
     $step = parent::removeAt($index);
     $this->_wizard->getMultiView()->getViews()->remove($step);
     $this->_wizard->removedWizardStep($step);
     return $step;
 }