Remove unused API
authorColeman Watts <coleman@civicrm.org>
Fri, 6 Feb 2015 02:20:09 +0000 (21:20 -0500)
committerColeman Watts <coleman@civicrm.org>
Fri, 6 Feb 2015 02:20:09 +0000 (21:20 -0500)
api/v3/Location.php [deleted file]

diff --git a/api/v3/Location.php b/api/v3/Location.php
deleted file mode 100644 (file)
index 31510dc..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-/**
- * Function to inform caller that Location is obsolete and Address, Phone, Email, Website should be used.
- *
- * @param array $params
- *
- * @return array
- */
-function civicrm_api3_location_create($params) {
-  return civicrm_api3_create_error("API (Location, Create) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
-}
-
-/**
- * Function to inform caller that Location is obsolete and Address, Phone, Email, Website should be used.
- *
- * @param array $params
- *
- * @return array
- */
-function civicrm_api3_location_get($params) {
-  return civicrm_api3_create_error("API (Location, Get) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
-}
-
-/**
- * Function to inform caller that Location is obsolete and Address, Phone, Email, Website should be used.
- *
- * @param array $params
- *
- * @return array
- */
-function civicrm_api3_location_delete($params) {
-  return civicrm_api3_create_error("API (Location, Delete) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
-}