function ContactCategory::query
Return value
\Drupal\Core\Database\Query\SelectInterface
Overrides SqlBase::query
File
- 
              core/modules/ contact/ src/ Plugin/ migrate/ source/ ContactCategory.php, line 26 
Class
- ContactCategory
- Drupal 6/7 contact category source from database.
Namespace
Drupal\contact\Plugin\migrate\sourceCode
public function query() {
  $query = $this->select('contact', 'c')
    ->fields('c', [
    'cid',
    'category',
    'recipients',
    'reply',
    'weight',
    'selected',
  ]);
  $query->orderBy('c.cid');
  return $query;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
