Ejemplo n.º 1
0
 /**
  * remove an admin from a node of org tree
  * @param int $treeidst the idst of the tree to add
  * @param int $adminidst the security token of the administrator
  */
 function removeAdminTree($treeidst, $adminidst)
 {
     $query = "DELETE FROM " . AdminManager::getAdminTreeTable() . " WHERE idst = '" . $treeidst . "'" . "   AND idstAdmin = '" . $adminidst . "'";
     $this->_executeQuery($query);
 }