X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FController%2FSimple.php;h=f3319021e827c96c03c0f19d4d478e619b90dcac;hb=100fef9d739cd6f5377269d230510c328e484c8c;hp=f5858f506d38f41896898412d847a91b6f6e822f;hpb=ed5ef6168bb73bca9e124bceeb5131ff209bffe4;p=civicrm-core.git diff --git a/CRM/Core/Controller/Simple.php b/CRM/Core/Controller/Simple.php index f5858f506d..f3319021e8 100644 --- a/CRM/Core/Controller/Simple.php +++ b/CRM/Core/Controller/Simple.php @@ -39,15 +39,18 @@ class CRM_Core_Controller_Simple extends CRM_Core_Controller { /** - * constructor + * Constructor * + * @param null $path + * @param bool $title * @param string path the class Path of the form being implemented - * @param string title the descriptive name for the page - * @param int mode the mode that the form will operate on - * @param boolean addSequence should we add a unique sequence number to the end of the key - * @param boolean ignoreKey should we not set a qfKey for this controller (for standalone forms) + * @param bool $imageUpload + * @param bool $addSequence 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) + * @param bool $attachUpload * - * @return object + * + * @return \CRM_Core_Controller_Simple * @access public */ function __construct( @@ -104,10 +107,16 @@ class CRM_Core_Controller_Simple extends CRM_Core_Controller { } } + /** + * @param $parent + */ public function setParent($parent) { $this->_parent = $parent; } + /** + * @return mixed + */ public function getTemplateFileName() { // there is only one form here, so should be quite easy $actionName = $this->getActionName();