Merge pull request #4657 from monishdeb/CRM-14512
[civicrm-core.git] / CRM / Mailing / Form / Task.php
index 20130811ee252b8234d8e39569a346b9a5c1dc65..95c2385f33b2fe149a625b4fc66cfb61aaff149f 100644 (file)
@@ -40,7 +40,7 @@
 class CRM_Mailing_Form_Task extends CRM_Core_Form {
 
   /**
-   * the task being performed
+   * The task being performed
    *
    * @var int
    */
@@ -61,7 +61,7 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
   protected $_componentIds;
 
   /**
-   * build all the data structures needed to build the form
+   * Build all the data structures needed to build the form
    *
    * @param
    *
@@ -72,6 +72,10 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
     self::preProcessCommon($this);
   }
 
+  /**
+   * @param CRM_Core_Form $form
+   * @param bool $useTable
+   */
   static function preProcessCommon(&$form, $useTable = FALSE) {
     $values = $form->controller->exportValues($form->get('searchFormName'));
 
@@ -130,11 +134,14 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
   }
 
   /**
-   * 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 $type  button type for the form after processing
+   * @param string $nextType
+   * @param string $backType
+   * @param bool $submitOnce
+   *
    *
    * @return void
    * @access public
@@ -153,4 +160,4 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
       )
     );
   }
-}
\ No newline at end of file
+}