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


PHP xPDOQuery::groupby方法代码示例

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


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

示例1: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->leftJoin('modMediaSource', 'Source');
     $c->leftJoin($this->classKey, 'Thumb', "`{$this->classKey}`.`id` = `Thumb`.`parent`");
     $c->groupby($this->classKey . '.id');
     $c->select('`Source`.`name` as `source_name`');
     $c->select('`Thumb`.`url` as `thumbnail`');
     $c->where(array('resource_id' => $this->getProperty('resource_id')));
     $parent = $this->getProperty('parent');
     if ($parent !== false) {
         $c->where(array('parent' => $parent));
     }
     $query = trim($this->getProperty('query'));
     if (!empty($query)) {
         $c->where(array('file:LIKE' => "%{$query}%", 'OR:name:LIKE' => "%{$query}%", 'OR:alt:LIKE' => "%{$query}%", 'OR:description:LIKE' => "%{$query}%", 'OR:add:LIKE' => "%{$query}%"));
     }
     $tags = array_map('trim', explode(',', $this->getProperty('tags')));
     if (!empty($tags[0])) {
         $tags = implode("','", $tags);
         $c->innerJoin('msResourceFileTag', 'Tag', "`{$this->classKey}`.`id` = `Tag`.`file_id` AND `Tag`.`tag` IN ('" . $tags . "')");
         $c->groupby($this->classKey . '.id');
         $c->prepare();
         $this->modx->log(1, $c->toSQL());
     }
     return $c;
 }
开发者ID:svyatoslavteterin,项目名称:belton.by,代码行数:31,代码来源:getlist.class.php

示例2: prepareQueryBeforeCount

 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->leftJoin($this->classKey, 'Children');
     $c->where(array($this->classKey . '.parent' => $this->getProperty('id')));
     $c->groupby($this->classKey . '.text');
     return parent::prepareQueryBeforeCount($c);
 }
开发者ID:ChrstnMgcn,项目名称:revolution,代码行数:7,代码来源:getnodes.class.php

示例3: prepareQueryBeforeCount

 /** {@inheritDoc} */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     if ($this->getProperty('combo')) {
         $c->limit(0);
         $c->groupby('level');
     }
     return $c;
 }
开发者ID:vgrish,项目名称:mlmsystem,代码行数:9,代码来源:getlist.class.php

示例4: addGrouping

 /**
  * Group query by given field
  */
 public function addGrouping()
 {
     if (!empty($this->config['groupby'])) {
         $time = microtime(true);
         $groupby = $this->config['groupby'];
         $this->query->groupby($groupby);
         $this->addTime('Grouped by <b>' . $groupby . '</b>', microtime(true) - $time);
     }
 }
开发者ID:WhisperingTree,项目名称:blog,代码行数:12,代码来源:pdofetch.class.php

示例5: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->where(array('referrer_id' => $this->getProperty('referrer_id')));
     $c->groupby($this->classKey . '.id');
     $c->select($this->modx->getSelectColumns($this->classKey, $this->classKey));
     $c->innerJoin('modUser', 'User', $this->classKey . '.id = User.id');
     $c->select('User.username');
     $c->innerJoin('modUserProfile', 'UserProfile', $this->classKey . '.id = UserProfile.internalKey');
     $c->select('UserProfile.fullname');
     return $c;
 }
开发者ID:bendasvadim,项目名称:msProfile,代码行数:16,代码来源:getlist.class.php

示例6: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->leftJoin('modMediaSource', 'Source');
     $c->leftJoin($this->classKey, 'Thumb', "`{$this->classKey}`.`id` = `Thumb`.`parent`");
     $c->groupby($this->classKey . '.id');
     $c->select('`Source`.`name` as `source_name`');
     $c->select('`Thumb`.`url` as `thumbnail`');
     $c->where(array('resource_id' => $this->getProperty('resource_id')));
     $parent = $this->getProperty('parent');
     if ($parent !== false) {
         $c->where(array('parent' => $parent));
     }
     return $c;
 }
开发者ID:sin4end,项目名称:ms2Gallery,代码行数:19,代码来源:getlist.class.php

示例7: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->leftJoin('modTemplate', 'Template');
     $c->leftJoin('sxSubscriber', 'Subscribers');
     $c->select($this->modx->getSelectColumns($this->classKey, $this->classKey));
     $c->select($this->modx->getSelectColumns('modTemplate', 'Template', '', array('templatename')));
     $c->select('COUNT(`Subscribers`.`id`) as `subscribers`');
     $c->groupby($this->classKey . '.id');
     if ($query = $this->getProperty('query')) {
         $c->where(array('name:LIKE' => "%{$query}%", 'OR:description:LIKE' => "%{$query}%"));
     }
     if ($this->getProperty('combo')) {
         $c->where(array('active' => 1));
     }
     return $c;
 }
开发者ID:ksneo,项目名称:Sendex,代码行数:21,代码来源:getlist.class.php

示例8: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->groupby('glData.id');
     $c->leftJoin('glCountry', 'glCountry', 'glCountry.id = glData.identifier');
     $c->leftJoin('glRegion', 'glRegion', 'glRegion.id = glData.identifier');
     $c->leftJoin('glCity', 'glCity', 'glCity.id = glData.identifier');
     $c->select($this->modx->getSelectColumns('glData', 'glData'));
     $c->select(array('name' => 'glCountry.name_ru', 'name1' => 'glRegion.name_ru', 'name2' => 'glCity.name_ru', 'active' => 'glCountry.active', 'active1' => 'glRegion.active', 'active2' => 'glCity.active'));
     $query = trim($this->getProperty('query'));
     if ($query) {
         $c->where(array('name_ru:LIKE' => "%{$query}%", 'OR:name_en:LIKE' => "%{$query}%"));
     }
     //		$c->sortby('active', 'DESC');
     //		$c->sortby('name_ru', 'ASC');
     return $c;
 }
开发者ID:vgrish,项目名称:gl,代码行数:21,代码来源:getlist.class.php

示例9: prepareQueryBeforeCount

 /**
  * @param xPDOQuery $c
  *
  * @return xPDOQuery
  */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     /* Get all comments by section */
     if ($section = (int) $this->getProperty('section')) {
         if ($section = $this->modx->getObject('modResource', $section)) {
             $parents = $this->modx->getChildIds($section->get('id'), 1, array('context' => $section->get('context_key')));
             if (empty($parents)) {
                 $parents = array('0');
             }
             $c->where(array('Thread.resource:IN' => $parents));
         }
     } elseif ($threads = $this->getProperty('threads')) {
         if (!is_array($threads)) {
             $threads = explode(',', $threads);
         }
         if (!empty($threads)) {
             $c->where(array('TicketComment.thread:IN' => $threads));
         }
     } elseif ($parents = $this->getProperty('parents')) {
         if (!is_array($parents)) {
             $parents = explode(',', $parents);
         }
         if (!empty($parents)) {
             $c->where(array('Thread.resource:IN' => $parents));
         }
     } else {
         //$c->where(array('Thread.resource:!=' => 0));
     }
     if ($query = $this->getProperty('query', null)) {
         $query = trim($query);
         if (is_numeric($query)) {
             $c->where(array('TicketComment.id:=' => $query, 'OR:TicketComment.parent:=' => $query));
         } else {
             $c->where(array('TicketComment.text:LIKE' => '%' . $query . '%', 'OR:TicketComment.name:LIKE' => '%' . $query . '%', 'OR:TicketComment.email:LIKE' => '%' . $query . '%'));
         }
     }
     $c->leftJoin('TicketThread', 'Thread');
     $c->leftJoin('modUser', 'User');
     $c->leftJoin('modUserProfile', 'UserProfile');
     $c->leftJoin('modResource', 'Resource', 'Thread.resource = Resource.id');
     $c->select($this->modx->getSelectColumns('TicketComment', 'TicketComment'));
     $c->select(array('Thread.resource', 'Thread.properties', 'thread_name' => 'Thread.name', 'User.username', 'UserProfile.fullname', 'Resource.pagetitle', 'Resource.context_key'));
     $c->groupby('TicketComment.id');
     return $c;
 }
开发者ID:soulcreate,项目名称:Tickets,代码行数:50,代码来源:getlist.class.php

示例10: prepareQueryBeforeCount

 /** {@inheritDoc} */
 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     if (!$this->getProperty('combo')) {
         $c->groupby('MlmSystemClient.id');
         $c->leftJoin('modUser', 'modUser', 'modUser.id = MlmSystemClient.id');
         $c->leftJoin('modUserProfile', 'modUserProfile', 'modUserProfile.internalKey = MlmSystemClient.id');
         $c->leftJoin('modUser', 'modUserParent', 'modUserParent.id = MlmSystemClient.parent');
         $c->leftJoin('modUserProfile', 'modUserProfileParent', 'modUserProfileParent.internalKey = MlmSystemClient.parent');
         $c->leftJoin('MlmSystemStatus', 'MlmSystemStatus', 'MlmSystemStatus.id = MlmSystemClient.status');
         $c->leftJoin('MlmSystemPath', 'MlmSystemPath', 'MlmSystemPath.id = MlmSystemClient.id');
         $c->leftJoin('MlmSystemClient', 'MlmSystemClientParent', 'MlmSystemClientParent.parent = MlmSystemClient.id');
         $c->select($this->modx->getSelectColumns('MlmSystemClient', 'MlmSystemClient'));
         $c->select($this->modx->getSelectColumns('modUserProfile', 'modUserProfile', 'profile_', array('id', 'internalKey'), true));
         $c->select(array('username' => 'modUser.username', 'fullname' => 'modUserProfile.fullname', 'email' => 'modUserProfile.email', 'parent_username' => 'modUserParent.username', 'parent_fullname' => 'modUserProfileParent.fullname', 'parent_email' => 'modUserProfileParent.email', 'status_name' => 'MlmSystemStatus.name', 'status_color' => 'MlmSystemStatus.color', 'level' => 'MlmSystemPath.level', 'children' => 'COUNT(MlmSystemClientParent.parent)'));
     } else {
         $c->leftJoin('modUser', 'modUser', 'modUser.id = MlmSystemClient.id');
         $c->leftJoin('modUserProfile', 'modUserProfile', 'modUserProfile.internalKey = MlmSystemClient.id');
         $c->select($this->modx->getSelectColumns('MlmSystemClient', 'MlmSystemClient'));
         $c->select($this->modx->getSelectColumns('modUserProfile', 'modUserProfile', 'profile_', array('id', 'internalKey'), true));
         $c->select(array('username' => 'modUser.username', 'fullname' => 'modUserProfile.fullname'));
         $c->where(array('status:NOT IN' => array(4)));
         $client = $this->getProperty('client', 0);
         if (!empty($client)) {
             $c->where(array('id:!=' => $client));
         }
     }
     $status = $this->getProperty('status');
     if (!empty($status)) {
         $c->where(array('status' => $status));
     }
     $level = $this->getProperty('level');
     if (!empty($level)) {
         $c->where(array('MlmSystemPath.level' => $level));
     }
     $leader = $this->getProperty('leader');
     if ($leader != '') {
         $c->where(array('leader' => $leader));
     }
     // query
     if ($query = $this->getProperty('query')) {
         $c->where(array('modUser.username:LIKE' => '%' . $query . '%', 'OR:modUserProfile.fullname:LIKE' => '%' . $query . '%', 'OR:modUserProfile.email:LIKE' => '%' . $query . '%'));
     }
     return $c;
 }
开发者ID:vgrish,项目名称:mlmsystem,代码行数:45,代码来源:getlist.class.php

示例11: prepareGroupCondition

 protected function prepareGroupCondition(xPDOQuery $c)
 {
     $c->groupby('sm_price');
     $c->groupby('sm_trade_price');
     return $c;
 }
开发者ID:bendasvadim,项目名称:NewsModxBox,代码行数:6,代码来源:getlist.class.php

示例12: prepareQueryAfterCount

 public function prepareQueryAfterCount(xPDOQuery $c)
 {
     $c->groupby($this->defaultSortField, $this->defaultSortDirection);
     return $c;
 }
开发者ID:rtripault,项目名称:MODx-CronManager,代码行数:5,代码来源:getlist.class.php

示例13: prepareQueryAfterCount

 /** {@inheritDoc} */
 public function prepareQueryAfterCount(xPDOQuery $c)
 {
     $c->groupby($this->classKey . '.id');
     return $c;
 }
开发者ID:rafull6,项目名称:texno-service,代码行数:6,代码来源:getlist.class.php

示例14: prepareQueryBeforeCount

 public function prepareQueryBeforeCount(xPDOQuery $c)
 {
     $c->groupby('form');
     return $c;
 }
开发者ID:raadhuis,项目名称:modx-basic,代码行数:5,代码来源:getlistsingle.class.php

示例15: prepareQueryAfterCount

 public function prepareQueryAfterCount(xPDOQuery $c)
 {
     $c->select(array('modAccessPermission.id', 'modAccessPermission.name', 'modAccessPermission.description', 'Template.lexicon'));
     $c->groupby('modAccessPermission.name');
     return $c;
 }
开发者ID:ChrstnMgcn,项目名称:revolution,代码行数:6,代码来源:getlist.class.php


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