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


PHP CRM_Report_Form::groupBy方法代碼示例

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


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

示例1: groupBy

 function groupBy()
 {
     parent::groupBy();
     //@todo - need to re-visit this - bad behaviour from pa
     if ($this->_groupBy == 'GROUP BY') {
         $this->_groupBY = NULL;
     }
     // if a stat field has been selected the do a group by
     if (!empty($this->_statFields) && empty($this->_groupBy)) {
         $this->_groupBy[] = $this->_aliases[$this->_baseTable] . ".id";
     }
     //@todo - this should be in the parent function or at parent level - perhaps build query should do this?
     if (!empty($this->_groupBy) && is_array($this->_groupBy)) {
         $this->_groupBy = 'GROUP BY ' . implode(',', $this->_groupBy);
     }
 }
開發者ID:hguru,項目名稱:224Civi,代碼行數:16,代碼來源:Extended.php

示例2: groupBy

 public function groupBy()
 {
     parent::groupBy();
     if (empty($this->_groupBy) && $this->_totalPaid) {
         $groupBy = array("{$this->_aliases['civicrm_pledge']}.id", "{$this->_aliases['civicrm_pledge']}.currency");
         $this->_groupBy = CRM_Contact_BAO_Query::getGroupByFromSelectColumns($this->_selectClauses, $groupBy);
     }
 }
開發者ID:nielosz,項目名稱:civicrm-core,代碼行數:8,代碼來源:Detail.php

示例3: groupBy

 public function groupBy()
 {
     parent::groupBy();
     if (empty($this->_groupBy) && $this->_totalPaid) {
         $this->_groupBy = " GROUP BY {$this->_aliases['civicrm_pledge']}.id, {$this->_aliases['civicrm_pledge']}.currency";
     }
 }
開發者ID:sdekok,項目名稱:civicrm-core,代碼行數:7,代碼來源:Detail.php

示例4: groupBy

 /**
  * GROUP BY for the query.
  */
 public function groupBy()
 {
     parent::groupBy();
     // $this->_groupBy = "GROUP BY {$this->_aliases['organization']}.id";
 }
開發者ID:aghstrategies,項目名稱:com.aghstrategies.orgeventattendees,代碼行數:8,代碼來源:OrgSummary.php


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