Remove function that exactly matches parent class.
authoreileen <emcnaughton@wikimedia.org>
Fri, 17 Jan 2020 01:29:18 +0000 (14:29 +1300)
committereileen <emcnaughton@wikimedia.org>
Fri, 17 Jan 2020 20:05:07 +0000 (09:05 +1300)
I copied it over the parent class fn & apart from minor comment block differences it matches

CRM/Core/Form/Task.php
CRM/Member/Form/Task.php

index 879bfc6a471bbd1e5dc26dbb80193981b3b3dd49..67ca0537adce8d3db83201b93c60fee21f9583d4 100644 (file)
@@ -167,8 +167,7 @@ abstract class CRM_Core_Form_Task extends CRM_Core_Form {
   }
 
   /**
-   * Simple shell that derived classes can call to add buttons to
-   * the form with a customized title for the main Submit
+   * Add buttons to the form.
    *
    * @param string $title
    *   Title of the main button.
index 04a02b8f245abd4a7df59f445e1a6871ab5cc7cb..5f5791d01ab0f3019f7f4f976364c6f5c5485101 100644 (file)
@@ -120,30 +120,4 @@ class CRM_Member_Form_Task extends CRM_Core_Form_Task {
     );
   }
 
-  /**
-   * 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 $backType
-   * @param bool $submitOnce
-   *
-   * @return void
-   */
-  public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
-    $this->addButtons([
-      [
-        'type' => $nextType,
-        'name' => $title,
-        'isDefault' => TRUE,
-      ],
-      [
-        'type' => $backType,
-        'name' => ts('Cancel'),
-      ],
-    ]);
-  }
-
 }