Merge pull request #2838 from eileenmcnaughton/CRM-14419
[civicrm-core.git] / api / v3 / Location.php
CommitLineData
6a488035 1<?php
6a488035
TO
2
3require_once 'api/v3/utils.php';
4
5/**
6 * Functions to inform caller that Location is obsolete and Address, Phone, Email, Website should be used
7 */
8function civicrm_api3_location_create($params) {
106a7a3a 9 return civicrm_api3_create_error("API (Location, Create) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
6a488035
TO
10}
11
12function civicrm_api3_location_get($params) {
106a7a3a 13 return civicrm_api3_create_error("API (Location, Get) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
6a488035
TO
14}
15
16function civicrm_api3_location_delete($params) {
106a7a3a 17 return civicrm_api3_create_error("API (Location, Delete) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE));
6a488035
TO
18}
19