fixed identation and styling

This commit is contained in:
CiviWare Solutions 2018-08-30 20:34:04 +01:00
parent f43482e49b
commit 08b5349b23
1 changed files with 29 additions and 3 deletions

View File

@ -8,6 +8,10 @@ class CRM_ConstituentsOnly_BAO_Query extends CRM_Contact_BAO_Query_Interface {
return self::$_networkFields;
}
/**
* @param $query
*
*/
public function select(&$query) {
// hack for profile search
$url = CRM_Utils_Array::value('q', $_GET);
@ -32,10 +36,8 @@ class CRM_ConstituentsOnly_BAO_Query extends CRM_Contact_BAO_Query_Interface {
}
/**
* Build where clause for ConstituentsOnly
* @param $query
*
* @return void
* @access public
*/
public function where(&$query) {
if (empty($query->_paramLookup['entryURL'])) {
@ -47,21 +49,45 @@ class CRM_ConstituentsOnly_BAO_Query extends CRM_Contact_BAO_Query_Interface {
}
}
/**
* @param string $name
* @param $mode
* @param $side
*
*/
public function from($name, $mode, $side) {
}
/**
* @param $tables
*
*/
public function setTableDependency(&$tables) {
}
public function getPanesMapper(&$panes) {
}
/**
* @param $panes
*
*/
public function registerAdvancedSearchPane(&$panes) {
}
/**
* @param CRM_Core_Form $form
* @param $type
*
*/
public function buildAdvancedSearchPaneForm(&$form, $type) {
}
/**
* @param $paneTemplatePathArray
* @param $type
*
*/
public function setAdvancedSearchPaneTemplatePath(&$paneTemplatePathArray, $type) {
}