Merge pull request #4657 from monishdeb/CRM-14512
[civicrm-core.git] / CRM / Mailing / Form / Task.php
index 1879eeef989ed611287ebb4642f433d0f43d0195..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,7 +134,7 @@ 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
@@ -138,7 +142,6 @@ class CRM_Mailing_Form_Task extends CRM_Core_Form {
    * @param string $backType
    * @param bool $submitOnce
    *
-   * @internal param string $type button type for the form after processing
    *
    * @return void
    * @access public