X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FController%2FSearch.php;h=dad7c7cdddf8ad700d413547208fd2eaacbd7105;hb=cda772aae0c600de9033d3360dfde772a2a78f64;hp=3fe4bf449704853f9b1752a3734bb2f1bb77e075;hpb=397d0aec7771968e6ad649229f9a72c9c0e9b12c;p=civicrm-core.git diff --git a/CRM/Contact/Controller/Search.php b/CRM/Contact/Controller/Search.php index 3fe4bf4497..dad7c7cddd 100644 --- a/CRM/Contact/Controller/Search.php +++ b/CRM/Contact/Controller/Search.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -47,7 +47,11 @@ class CRM_Contact_Controller_Search extends CRM_Core_Controller { /** - * Class constructor + * Class constructor. + * + * @param string $title + * @param bool $modal + * @param int|mixed|null $action */ public function __construct($title = NULL, $modal = TRUE, $action = CRM_Core_Action::NONE) { parent::__construct($title, $modal); @@ -75,17 +79,17 @@ class CRM_Contact_Controller_Search extends CRM_Core_Controller { // see if we can figure out the url and redirect to the right search form // note that this happens really early on, so we cant use any of the form or controller // variables - $config = CRM_Core_Config::singleton(); + $config = CRM_Core_Config::singleton(); $qString = $_GET[$config->userFrameworkURLVar]; $args = "reset=1"; $path = 'civicrm/contact/search/advanced'; if (strpos($qString, 'basic') !== FALSE) { $path = 'civicrm/contact/search/basic'; } - else if (strpos($qString, 'builder') !== FALSE) { + elseif (strpos($qString, 'builder') !== FALSE) { $path = 'civicrm/contact/search/builder'; } - else if ( + elseif ( strpos($qString, 'custom') !== FALSE && isset($_REQUEST['csid']) ) {