X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FController.php;h=fc35186fe0652a43601e39168aebb84a9ba4f4c6;hb=b1cee374a293617670cb8587d488da022db6547e;hp=a5141627c7d3cd03a81ede4e3d6a1cb18c8ddb66;hpb=e8e6e75baaed9d6b5f19beef1e5002a424144427;p=civicrm-core.git diff --git a/CRM/Core/Controller.php b/CRM/Core/Controller.php index a5141627c7..fc35186fe0 100644 --- a/CRM/Core/Controller.php +++ b/CRM/Core/Controller.php @@ -82,7 +82,7 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { * so the display routine needs to not do any work. (The * parent object takes care of the display) * - * @var boolean + * @var bool */ protected $_embedded = FALSE; @@ -94,7 +94,7 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { * Useful when we run form in non civicrm context * and we need to transfer control back.(eg. drupal) * - * @var boolean + * @var bool */ protected $_skipRedirection = FALSE; @@ -102,14 +102,14 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { * Are we in print mode? if so we need to modify the display * functionality to do a minimal display :) * - * @var boolean + * @var bool */ public $_print = 0; /** * Should we generate a qfKey, true by default * - * @var boolean + * @var bool */ public $_generateQFKey = TRUE; @@ -144,7 +144,7 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { /** * The destination if set will override the destination the code wants to send it to. * - * @var string; + * @var string */ public $_destination = NULL; @@ -170,6 +170,8 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { * Should we add a unique sequence number to the end of the key. * @param bool $ignoreKey * Should we not set a qfKey for this controller (for standalone forms). + * + * @throws \CRM_Core_Exception */ public function __construct( $title = NULL,