Merge pull request #15338 from totten/master-poc-postcommit
[civicrm-core.git] / CRM / Contact / Selector / Controller.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17class CRM_Contact_Selector_Controller extends CRM_Core_Selector_Controller {
69078420 18
86538308 19 /**
95cdcc0f 20 * Default function for qill.
21 *
22 * If needed to be implemented, we expect the subclass to do it
86538308 23 *
a6c01b45
CW
24 * @return string
25 * the status message
86538308 26 */
00be9182 27 public function getQill() {
6a488035
TO
28 return $this->_object->getQILL();
29 }
96025800 30
6a488035 31}