Exemplo n.º 1
0
 /**
  * Method setDialogBoxLevel
  * @access public
  * @param mixed $level 
  * @return DialogBox
  * @since 1.0.35
  */
 public function setDialogBoxLevel($level)
 {
     if ($level > 1) {
         $this->dialogbox_indice = $level;
         DialogBox::addLevelToInitDialogBox($level, $this);
     } else {
         $this->dialogbox_indice = "";
         DialogBox::addLevelToInitDialogBox(1, $this);
     }
     if ($GLOBALS['__PAGE_IS_INIT__']) {
         $this->object_change = true;
     }
     return $this;
 }