本文整理匯總了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);
}
}
示例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);
}
}
示例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";
}
}
示例4: groupBy
/**
* GROUP BY for the query.
*/
public function groupBy()
{
parent::groupBy();
// $this->_groupBy = "GROUP BY {$this->_aliases['organization']}.id";
}