當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ca_lists::itemIDIsInList方法代碼示例

本文整理匯總了PHP中ca_lists::itemIDIsInList方法的典型用法代碼示例。如果您正苦於以下問題:PHP ca_lists::itemIDIsInList方法的具體用法?PHP ca_lists::itemIDIsInList怎麽用?PHP ca_lists::itemIDIsInList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ca_lists的用法示例。


在下文中一共展示了ca_lists::itemIDIsInList方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setAccessSettingForSource

 /**
  * Set access setting for given source
  *
  * @param string $ps_table the table the bundle belongs to
  * @param string $pm_source_id_or_code the primary key or code for the type list item
  * @param int $pn_access access level, __CA_BUNDLE_ACCESS_NONE__, __CA_BUNDLE_ACCESS_READONLY__ or __CA_BUNDLE_ACCESS_EDIT__
  * @param bool $pb_is_default Mark source as default for this table
  * @return boolean success or not
  */
 public function setAccessSettingForSource($ps_table, $pm_source_id_or_code, $pn_access, $pb_is_default = false)
 {
     if (!in_array($pn_access, array(__CA_BUNDLE_ACCESS_NONE__, __CA_BUNDLE_ACCESS_READONLY__, __CA_BUNDLE_ACCESS_EDIT__))) {
         return false;
     }
     if (!$this->getPrimaryKey()) {
         return false;
     }
     //if(!$this->getAppConfig()->get('perform_source_access_checking')) { return false; }
     $o_dm = Datamodel::load();
     $t_list = new ca_lists();
     $va_vars = $this->get('vars');
     if (!is_array($va_vars)) {
         $va_vars = array();
     }
     if (!isset($va_vars['source_access_settings'])) {
         $va_vars['source_access_settings'] = array();
     }
     $t_instance = $o_dm->getInstanceByTableName($ps_table, true);
     if (!$t_instance) {
         return false;
     }
     if (!($vs_list_code = $t_instance->getSourceListCode())) {
         return false;
     }
     // convert idno to id
     if (!is_numeric($pm_source_id_or_code)) {
         if (!$t_list->itemIsInList($vs_list_code, $pm_source_id_or_code)) {
             return false;
         }
         $pm_source_id_or_code = ca_lists::getItemID($vs_list_code, $pm_source_id_or_code);
     }
     if (!$t_list->itemIDIsInList($vs_list_code, $pm_source_id_or_code)) {
         return false;
     }
     $va_vars['source_access_settings'][$ps_table . "." . $pm_source_id_or_code] = $pn_access;
     if ($pb_is_default) {
         $va_vars['source_access_settings'][$ps_table . '_default_id'] = $pm_source_id_or_code;
     }
     $this->set('vars', $va_vars);
     $vn_old_mode = $this->getMode();
     $this->setMode(ACCESS_WRITE);
     $this->update();
     $this->setMode($vn_old_mode);
     if ($this->numErrors() > 0) {
         return false;
     }
     return true;
 }
開發者ID:samrahman,項目名稱:providence,代碼行數:58,代碼來源:ca_user_roles.php


注:本文中的ca_lists::itemIDIsInList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。