X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FForm%2FSearch%2FCustom%2FFullText%2FMembership.php;h=250aeb044afada26bcf33cb4992c41a2649541b3;hb=cd5823ae452708e6d0a5fb899b2c3eb3f63be640;hp=138dd2667ecf9baf8e600a6de79cc3c9eae10402;hpb=7a86e9ede3a83491f1e831da64537304e37ee837;p=civicrm-core.git diff --git a/CRM/Contact/Form/Search/Custom/FullText/Membership.php b/CRM/Contact/Form/Search/Custom/FullText/Membership.php index 138dd2667e..250aeb044a 100644 --- a/CRM/Contact/Form/Search/Custom/FullText/Membership.php +++ b/CRM/Contact/Form/Search/Custom/FullText/Membership.php @@ -1,7 +1,7 @@ enableComponents) && - CRM_Core_Permission::check('access CiviMember'); + CRM_Core_Permission::check('access CiviMember'); } /** - * {@inheritdoc} + * @inheritDoc */ public function fillTempTable($queryText, $entityIDTableName, $toTable, $queryLimit, $detailLimit) { $queries = $this->prepareQueries($queryText, $entityIDTableName); @@ -62,9 +68,10 @@ class CRM_Contact_Form_Search_Custom_FullText_Membership extends CRM_Contact_For * * @param string $queryText * @param string $entityIDTableName - * @return array list tables/queries (for runQueries) + * @return array + * list tables/queries (for runQueries) */ - function prepareQueries($queryText, $entityIDTableName) { + public function prepareQueries($queryText, $entityIDTableName) { // Note: For available full-text indices, see CRM_Core_InnoDBIndexer $contactSQL = array(); @@ -108,4 +115,4 @@ LEFT JOIN civicrm_membership_status cms ON cms.id = cm.status_id CRM_Core_DAO::executeQuery($sql); } -} \ No newline at end of file +}