post_addItem() public method

public post_addItem ( )
 /**
  * Used to update tree by redefining other items ForeignKeyField
  *
  * @return nothing
  **/
 function post_addItem()
 {
     $this->alterElementInsideTree("add");
     parent::post_addItem();
 }
コード例 #2
0
ファイル: entity.class.php プロジェクト: korial29/glpi
 function post_addItem()
 {
     parent::post_addItem();
     // Add right to current user - Hack to avoid login/logout
     $_SESSION['glpiactiveentities'][$this->fields['id']] = $this->fields['id'];
     $_SESSION['glpiactiveentities_string'] .= ",'" . $this->fields['id'] . "'";
 }