CRM-16676 Further refactoring, unused method
authorJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 6 Nov 2015 14:10:19 +0000 (14:10 +0000)
committerJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 6 Nov 2015 14:10:19 +0000 (14:10 +0000)
CRM/Event/Form/ManageEvent/EventInfo.php

index 1e210b94cefba0c0e84d78b578a6b0352db06419..c1283fab5502ca1e2d3cfb4e7d6a262afaed6649 100644 (file)
@@ -305,33 +305,4 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent {
     return ts('Event Information and Settings');
   }
 
-  /**
-   * Retrieve event template custom data values and set as default values for current new event.
-   *
-   * @param int $templateId
-   *   Event template id.
-   *
-   * @return array
-   *   Array of custom data defaults.
-   */
-  public function templateCustomDataValues($templateId) {
-    $defaults = array();
-    if (!$templateId) {
-      return $defaults;
-    }
-
-    // pull template custom data as a default for event, CRM-5596
-    $groupTree = CRM_Core_BAO_CustomGroup::getTree($this->_type, $this, $templateId, NULL, $this->_subType);
-    $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, $this->_groupCount, $this);
-    $customValues = array();
-    CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $customValues);
-    foreach ($customValues as $key => $val) {
-      if ($fieldKey = CRM_Core_BAO_CustomField::getKeyID($key)) {
-        $defaults["custom_{$fieldKey}_-1"] = $val;
-      }
-    }
-
-    return $defaults;
-  }
-
 }