当前位置: 首页>>代码示例>>PHP>>正文


PHP ca_sets::getAttributesByElement方法代码示例

本文整理汇总了PHP中ca_sets::getAttributesByElement方法的典型用法代码示例。如果您正苦于以下问题:PHP ca_sets::getAttributesByElement方法的具体用法?PHP ca_sets::getAttributesByElement怎么用?PHP ca_sets::getAttributesByElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ca_sets的用法示例。


在下文中一共展示了ca_sets::getAttributesByElement方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: saveSetInfo

 public function saveSetInfo()
 {
     if (!$this->request->isLoggedIn()) {
         $this->response->setRedirect(caNavUrl($this->request, '', 'LoginReg', 'form'));
         return;
     }
     global $g_ui_locale_id;
     // current locale_id for user
     $va_errors_edit_set = array();
     $t_set = new ca_sets();
     $pn_set_id = $this->request->getParameter('set_id', pInteger);
     $ps_name = $this->request->getParameter('name', pString);
     if (!$ps_name) {
         $va_errors_edit_set["name"] = _t("You must enter a name for your collection");
     }
     $vs_desc = $this->request->getParameter('description', pString);
     if (sizeof($va_errors_edit_set) == 0) {
         if ($t_set->load($pn_set_id) && $t_set->haveAccessToSet($this->request->getUserID(), __CA_SET_EDIT_ACCESS__)) {
             $t_set->setMode(ACCESS_WRITE);
             $t_set->set('access', $this->request->getParameter('access', pInteger));
             // edit/add description
             $va_intro_texts = $t_set->getAttributesByElement('set_intro');
             if (sizeof($va_intro_texts)) {
                 // edit existing attribute
                 $vn_attribute_id = $va_intro_texts[0]->getAttributeID();
                 $t_set->editAttribute($vn_attribute_id, 'set_intro', array('set_intro' => $vs_desc, 'locale_id' => $g_ui_locale_id));
             } else {
                 // create new attribute
                 $t_set->addAttribute(array('set_intro' => $vs_desc, 'locale_id' => $g_ui_locale_id), 'set_intro');
             }
             $t_set->update();
             if (sizeof($va_labels = caExtractValuesByUserLocale($t_set->getLabels(array($g_ui_locale_id), __CA_LABEL_TYPE_PREFERRED__)))) {
                 // edit label
                 foreach ($va_labels as $vn_set_id => $va_label) {
                     $t_set->editLabel($va_label[0]['label_id'], array('name' => $ps_name), $g_ui_locale_id);
                 }
             } else {
                 // add new label
                 $t_set->addLabel(array('name' => $ps_name), $g_ui_locale_id, null, true);
             }
         }
     }
     $this->view->setVar('errors_edit_set', $va_errors_edit_set);
     $this->index();
 }
开发者ID:guaykuru,项目名称:pawtucket,代码行数:45,代码来源:SetsController.php


注:本文中的ca_sets::getAttributesByElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。