AJAX cleanup & remove unused functions
authorColeman Watts <coleman@civicrm.org>
Thu, 7 May 2015 14:20:23 +0000 (10:20 -0400)
committerColeman Watts <coleman@civicrm.org>
Thu, 7 May 2015 14:20:23 +0000 (10:20 -0400)
CRM/Core/Page/AJAX/Attachment.php
CRM/Pledge/Page/AJAX.php
CRM/Pledge/xml/Menu/Pledge.xml
CRM/Utils/JSON.php
tools/bin/scripts/ajax.php [deleted file]

index 7148e05c7c3db0b4dfa2e555ba9d0216ec350d82..7aaf3cd5d899e2dc9909c30f47a9d830805966d9 100644 (file)
@@ -142,9 +142,7 @@ class CRM_Core_Page_AJAX_Attachment {
       }
     }
 
-    header('Content-Type: text/javascript');
-    echo json_encode(array_merge($result));
-    CRM_Utils_System::civiExit();
+    CRM_Utils_JSON::output(array_merge($result));
   }
 
   /**
index db58096c540839eac51e6ef620117a74733a378f..e5c1c622ba334e92f53e92aea500ac619b90e49f 100755 (executable)
  */
 class CRM_Pledge_Page_AJAX {
 
-  /**
-   * Building Pledge Name combo box.
-   */
-  public static function pledgeName() {
-
-    $getRecords = FALSE;
-    if (isset($_GET['name']) && $_GET['name']) {
-      $name = CRM_Utils_Type::escape($_GET['name'], 'String');
-      $name = str_replace('*', '%', $name);
-      $whereClause = "p.creator_pledge_desc LIKE '%$name%' ";
-      $getRecords = TRUE;
-    }
-
-    if (isset($_GET['id']) && is_numeric($_GET['id'])) {
-      $pledgeId = CRM_Utils_Type::escape($_GET['id'], 'Integer');
-      $whereClause = "p.id = {$pledgeId} ";
-      $getRecords = TRUE;
-    }
-
-    if ($getRecords) {
-      $query = "
-SELECT p.creator_pledge_desc, p.id
-FROM civicrm_pb_pledge p
-WHERE {$whereClause}
-";
-      $dao = CRM_Core_DAO::executeQuery($query);
-      $elements = array();
-      while ($dao->fetch()) {
-        $elements[] = array(
-          'name' => $dao->creator_pledge_desc,
-          'value' => $dao->id,
-        );
-      }
-    }
-
-    if (empty($elements)) {
-      $name = $_GET['name'];
-      if (!$name && isset($_GET['id'])) {
-        $name = $_GET['id'];
-      }
-      $elements[] = array(
-        'name' => trim($name, '*'),
-        'value' => trim($name, '*'),
-      );
-    }
-
-    header('Content-Type: application/json');
-    echo CRM_Utils_JSON::encode($elements, 'value');
-    CRM_Utils_System::civiExit();
-  }
-
   /**
    * Function to setDefaults according to Pledge Id
    * for batch entry pledges
@@ -99,8 +48,7 @@ WHERE {$whereClause}
       $pledgeID = CRM_Utils_Type::escape($_POST['pid'], 'Integer');
       $details = CRM_Pledge_BAO_PledgePayment::getOldestPledgePayment($pledgeID);
     }
-    echo json_encode($details);
-    CRM_Utils_System::civiExit();
+    CRM_Utils_JSON::output($details);
   }
 
 }
index 25fdae88fac37c6198351fc3075509a9c65097d5..273dee9d1bf5b907647a0533ff5193344817749e 100644 (file)
      <access_arguments>access CiviPledge</access_arguments>
      <weight>580</weight>
   </item>
-  <item>
-    <path>civicrm/ajax/pledgeName</path>
-    <page_callback>CRM_Pledge_Page_AJAX::pledgeName</page_callback>
-    <access_arguments>access CiviCRM,access CiviPledge</access_arguments>
-  </item>
   <item>
     <path>civicrm/ajax/pledgeAmount</path>
     <page_callback>CRM_Pledge_Page_AJAX::getPledgeDefaults</page_callback>
index d8b7cb1b89d6879dcde7901bb251c09c10b2b94f..e92109acb27f69e3981efadc3c0e127dd66be8b8 100644 (file)
@@ -48,80 +48,9 @@ class CRM_Utils_JSON {
     CRM_Utils_System::civiExit();
   }
 
-  /**
-   * Create JSON object.
-   * @deprecated
-   *
-   * @param array $params
-   *   Associated array, that needs to be.
-   *                            converted to JSON array
-   * @param string $identifier
-   *   Identifier for the JSON array.
-   *
-   * @return string
-   *   JSON array
-   */
-  public static function encode($params, $identifier = 'id') {
-    $buildObject = array();
-    foreach ($params as $value) {
-      $name = addslashes($value['name']);
-      $buildObject[] = "{ name: \"$name\", {$identifier}:\"{$value[$identifier]}\"}";
-    }
-
-    $jsonObject = '{ identifier: "' . $identifier . '", items: [' . implode(',', $buildObject) . ' ]}';
-
-    return $jsonObject;
-  }
-
-  /**
-   * Encode json format for flexigrid, NOTE: "id" should be present in $params for each row
-   *
-   * @param array $params
-   *   Associated array of values rows.
-   * @param int $page
-   *   Page no for selector.
-   * @param $total
-   * @param array $selectorElements
-   *   Selector rows.
-   *
-   * @return string
-   *   json encoded string
-   */
-  public static function encodeSelector(&$params, $page, $total, $selectorElements) {
-    $json = "";
-    $json .= "{\n";
-    $json .= "page: $page,\n";
-    $json .= "total: $total,\n";
-    $json .= "rows: [";
-    $rc = FALSE;
-
-    foreach ($params as $key => $value) {
-      if ($rc) {
-        $json .= ",";
-      }
-      $json .= "\n{";
-      $json .= "id:'" . $value['id'] . "',";
-      $json .= "cell:[";
-      $addcomma = FALSE;
-      foreach ($selectorElements as $element) {
-        if ($addcomma) {
-          $json .= ",";
-        }
-        $json .= "'" . addslashes($value[$element]) . "'";
-        $addcomma = TRUE;
-      }
-      $json .= "]}";
-      $rc = TRUE;
-    }
-
-    $json .= "]\n";
-    $json .= "}";
-
-    return $json;
-  }
-
   /**
    * encode data for dataTable plugin.
+   * @deprecated
    *
    * @param array $params
    *   Associated array of row elements.
diff --git a/tools/bin/scripts/ajax.php b/tools/bin/scripts/ajax.php
deleted file mode 100644 (file)
index 1845414..0000000
+++ /dev/null
@@ -1,250 +0,0 @@
-<?php
-/*
- +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2015                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007.                                       |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
- |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License along with this program; if not, contact CiviCRM LLC       |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
- +--------------------------------------------------------------------+
-*/
-
-/**
- * This file returns permissioned data required by dojo hierselect widget.
- *
- */
-
-/**
- * call to invoke function
- *
- */
-
-invoke();
-exit();
-
-/**
- * Invoke function that redirects to respective functions
- */
-function invoke() {
-  if (!isset($_GET['return'])) {
-    return;
-  }
-
-  // intialize the system
-  require_once '../civicrm.config.php';
-  require_once 'CRM/Core/Config.php';
-  $config = &CRM_Core_Config::singleton();
-
-  switch ($_GET['return']) {
-    case 'states':
-      return states($config);
-
-    case 'countries':
-      return countries($config);
-
-    default:
-      return;
-  }
-}
-
-/**
- * Test Function used for new hs-widget.
- * @param $config
- */
-function states(&$config) {
-  $elements = array();
-  if (isset($_GET['node1'])) {
-    require_once 'CRM/Utils/Type.php';
-    $countryId = CRM_Utils_Type::escape($_GET['node1'], 'String');
-
-    if ($countryId) {
-      $stateName = NULL;
-      if (isset($_GET['name'])) {
-        $stateName = trim(CRM_Utils_Type::escape($_GET['name'], 'String'));
-        $stateName = str_replace('*', '%', $stateName);
-      }
-
-      $default = NULL;
-      if (isset($_GET['default'])) {
-        $default = trim(CRM_Utils_Type::escape($_GET['default'], 'Boolean'));
-      }
-
-      $stateId = NULL;
-      if (isset($_GET['id'])) {
-        $stateId = CRM_Utils_Type::escape($_GET['id'], 'Positive', FALSE);
-      }
-
-      $query = "
-SELECT civicrm_state_province.name name, civicrm_state_province.id id
-FROM civicrm_state_province
-WHERE civicrm_state_province.country_id={$countryId}
-      AND civicrm_state_province.name LIKE LOWER('$stateName%')
-ORDER BY name";
-
-      $nullArray = array();
-      $dao = CRM_Core_DAO::executeQuery($query, $nullArray);
-
-      if ($default) {
-        while ($dao->fetch()) {
-          $elements[] = array('name' => ts($dao->name),
-            'value' => $dao->id,
-          );
-        }
-      }
-      elseif ($stateId) {
-        while ($dao->fetch()) {
-          if ($dao->id == $stateId) {
-            $elements[] = array('name' => ts($dao->name),
-              'value' => $dao->id,
-            );
-          }
-        }
-      }
-      else {
-        $count = 0;
-        while ($dao->fetch() && $count < 5) {
-          $elements[] = array('name' => ts($dao->name),
-            'value' => $dao->id,
-          );
-          $count++;
-        }
-      }
-
-      if (empty($elements)) {
-        if ($stateName != '- type first letter(s) -') {
-          $label = '- state n/a -';
-        }
-        else {
-          $label = '- type first letter(s) -';
-        }
-        $elements[] = array('name' => $label,
-          'value' => '',
-        );
-      }
-      elseif (!$default && !$stateId && (!$stateName || $stateName == '- type first letter(s) -')) {
-        $elements = array();
-        $elements[] = array('name' => '- type first letter(s) -',
-          'value' => '',
-        );
-      }
-    }
-    else {
-      $elements[] = array('name' => '- state n/a -',
-        'value' => '',
-      );
-    }
-  }
-
-  require_once "CRM/Utils/JSON.php";
-  echo CRM_Utils_JSON::encode($elements, 'value');
-}
-
-/**
- * Test Function used for new hs-widget.
- * @param $config
- */
-function countries(&$config) {
-  //get the country limit and restrict the combo select options
-  $limitCodes = $config->countryLimit();
-  if (!is_array($limitCodes)) {
-    $limitCodes = array($config->countryLimit => 1);
-  }
-
-  $limitCodes = array_intersect(CRM_Core_PseudoConstant::countryIsoCode(), $limitCodes);
-  // added for testing purpose
-  //$limitCodes['1101'] = 'IN';
-  if (count($limitCodes)) {
-    $whereClause = " iso_code IN ('" . implode("', '", $limitCodes) . "')";
-  }
-  else {
-    $whereClause = " 1";
-  }
-
-  $elements = array();
-  require_once 'CRM/Utils/Type.php';
-
-  $name = NULL;
-  if (isset($_GET['name'])) {
-    $name = CRM_Utils_Type::escape($_GET['name'], 'String');
-  }
-
-  $countryId = NULL;
-  if (isset($_GET['id'])) {
-    $countryId = CRM_Utils_Type::escape($_GET['id'], 'Positive', FALSE);
-  }
-
-  //temporary fix to handle locales other than default US,
-  // CRM-2653
-  if (!$countryId && $name && $config->lcMessages != 'en_US') {
-    $countries = CRM_Core_PseudoConstant::country();
-
-    // get the country name in en_US, since db has this locale
-    $countryName = array_search($name, $countries);
-
-    if ($countryName) {
-      $countryId = $countryName;
-    }
-  }
-
-  $validValue = TRUE;
-  if (!$name && !$countryId) {
-    $validValue = FALSE;
-  }
-
-  if ($validValue) {
-    if (!$countryId) {
-      $name = str_replace('*', '%', $name);
-      $countryClause = " civicrm_country.name LIKE LOWER('$name%') ";
-    }
-    else {
-      $countryClause = " civicrm_country.id = {$countryId} ";
-    }
-
-    $query = "
-SELECT id, name
-  FROM civicrm_country
- WHERE {$countryClause}
-   AND {$whereClause}
-ORDER BY name";
-
-    $nullArray = array();
-    $dao = CRM_Core_DAO::executeQuery($query, $nullArray);
-
-    $count = 0;
-    while ($dao->fetch() && $count < 5) {
-      $elements[] = array('name' => ts($dao->name),
-        'value' => $dao->id,
-      );
-      $count++;
-    }
-  }
-
-  if (empty($elements)) {
-    if (isset($_GET['id'])) {
-      $name = $_GET['id'];
-    }
-
-    $elements[] = array('name' => trim($name, "%"),
-      'value' => trim($name, "%"),
-    );
-  }
-
-  require_once "CRM/Utils/JSON.php";
-  echo CRM_Utils_JSON::encode($elements, 'value');
-}
-