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


PHP CRM_Event_PseudoConstant::participantListing方法代码示例

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


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

示例1: browse

 /**
  * Browse all event templates.
  */
 public function browse()
 {
     //get all event templates.
     $allEventTemplates = array();
     $eventTemplate = new CRM_Event_DAO_Event();
     $eventTypes = CRM_Event_PseudoConstant::eventType();
     $participantRoles = CRM_Event_PseudoConstant::participantRole();
     $participantListings = CRM_Event_PseudoConstant::participantListing();
     //find all event templates.
     $eventTemplate->is_template = TRUE;
     $eventTemplate->find();
     while ($eventTemplate->fetch()) {
         CRM_Core_DAO::storeValues($eventTemplate, $allEventTemplates[$eventTemplate->id]);
         //get listing types.
         if ($eventTemplate->participant_listing_id) {
             $allEventTemplates[$eventTemplate->id]['participant_listing'] = $participantListings[$eventTemplate->participant_listing_id];
         }
         //get participant role
         if ($eventTemplate->default_role_id) {
             $allEventTemplates[$eventTemplate->id]['participant_role'] = $participantRoles[$eventTemplate->default_role_id];
         }
         //get event type.
         if (isset($eventTypes[$eventTemplate->event_type_id])) {
             $allEventTemplates[$eventTemplate->id]['event_type'] = $eventTypes[$eventTemplate->event_type_id];
         }
         //form all action links
         $action = array_sum(array_keys($this->links()));
         //add action links.
         $allEventTemplates[$eventTemplate->id]['action'] = CRM_Core_Action::formLink(self::links(), $action, array('id' => $eventTemplate->id), ts('more'), FALSE, 'eventTemplate.manage.action', 'Event', $eventTemplate->id);
     }
     $this->assign('rows', $allEventTemplates);
     $session = CRM_Core_Session::singleton();
     $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1&action=browse'));
 }
开发者ID:nielosz,项目名称:civicrm-core,代码行数:37,代码来源:EventTemplate.php

示例2: array

 /**
  * Get all the participant listings
  *
  * @access public
  *
  * @return array - array reference of all participant listings if any
  * @static
  */
 public static function &participantListing($id = NULL)
 {
     if (!self::$participantListing) {
         self::$participantListing = array();
         self::$participantListing = CRM_Core_OptionGroup::values('participant_listing');
     }
     if ($id) {
         return self::$participantListing[$id];
     }
     return self::$participantListing;
 }
开发者ID:hguru,项目名称:224Civi,代码行数:19,代码来源:PseudoConstant.php

示例3: array

 /**
  * Get all the participant listings
  *
  * @access public
  * @return array - array reference of all participant listings if any
  * @static
  */
 public static function &participantListing($id = null)
 {
     if (!self::$participantListing) {
         self::$participantListing = array();
         require_once "CRM/Core/OptionGroup.php";
         self::$participantListing = CRM_Core_OptionGroup::values("participant_listing");
     }
     if ($id) {
         return self::$participantListing[$id];
     }
     return self::$participantListing;
 }
开发者ID:ksecor,项目名称:civicrm,代码行数:19,代码来源:PseudoConstant.php


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