Example #1
0
 /**
  * get customfield config ids by grant
  * 
  * @param string $_grant
  * @return array of ids
  */
 public function getCustomfieldConfigIdsByAcl($_grant)
 {
     $user = Tinebase_Core::getUser();
     if (is_object($user)) {
         $result = $this->_backendConfig->getByAcl($_grant, $user->getId());
     } else {
         $result = array();
     }
     return $result;
 }