X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FForm%2FTask.php;h=e39ad4d9089a69f3c8aabd0e88689fd070e35dcd;hb=307f2fed1913bd66a833fc947e1ab8bd01c8cab5;hp=b9eb35da8ee05a8f880298835933f3b4b3fe92fa;hpb=58a50b22e20f112fdbfc7e50f18353c311ceb1ae;p=civicrm-core.git diff --git a/CRM/Contact/Form/Task.php b/CRM/Contact/Form/Task.php index b9eb35da8e..e39ad4d908 100644 --- a/CRM/Contact/Form/Task.php +++ b/CRM/Contact/Form/Task.php @@ -1,7 +1,7 @@ _contactIds = array(); $form->_contactTypes = array(); @@ -278,7 +277,7 @@ class CRM_Contact_Form_Task extends CRM_Core_Form { } /** - * Function to get the contact id for custom search + * Get the contact id for custom search * we are not using prev/next table incase of custom search */ public function getContactIds() { @@ -327,14 +326,13 @@ class CRM_Contact_Form_Task extends CRM_Core_Form { /** - * This function sets the default values for the form. Relationship that in edit/view action + * Set default values for the form. Relationship that in edit/view action * the default values are retrieved from the database * - * @access public * - * @return void + * @return array */ - function setDefaultValues() { + public function setDefaultValues() { $defaults = array(); return $defaults; } @@ -343,48 +341,40 @@ class CRM_Contact_Form_Task extends CRM_Core_Form { * This function is used to add the rules for form. * * @return void - * @access public */ - function addRules() { + public function addRules() { } /** - * Function to actually build the form + * Build the form object * * @return void - * @access public */ public function buildQuickForm() { $this->addDefaultButtons(ts('Confirm Action')); } /** - * process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated * - * @access public * * @return void */ public function postProcess() { } - //end of function - /** - * simple shell that derived classes can call to add buttons to + * Simple shell that derived classes can call to add buttons to * the form with a customized title for the main Submit * * @param string $title title of the main button - * @param string $nextType + * @param string $nextType button type for the form after processing * @param string $backType * @param bool $submitOnce * - * @internal param string $type button type for the form after processing - * * @return void - * @access public */ - function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) { + public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) { $this->addButtons(array( array( 'type' => $nextType, @@ -400,10 +390,9 @@ class CRM_Contact_Form_Task extends CRM_Core_Form { } /** - * replace ids of household members in $this->_contactIds with the id of their household. + * Replace ids of household members in $this->_contactIds with the id of their household. * CRM-8338 * - * @access public * * @return void */ @@ -468,4 +457,3 @@ class CRM_Contact_Form_Task extends CRM_Core_Form { } } } -