Merge pull request #2948 from davecivicrm/CRM-13764
[civicrm-core.git] / CRM / Utils / Api.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 class CRM_Utils_Api {
29 /**
30 * Attempts to retrieve the API entity name from any calling class.
31 *
32 * @param string|object $classNameOrObject
33 * @throws CRM_Core_Exception
34 */
35 static function getEntityName($classNameOrObject) {
36 require_once 'api/api.php';
37 $className = is_string($classNameOrObject) ? $classNameOrObject : get_class($classNameOrObject);
38
39 // First try the obvious replacements
40 $daoName = str_replace(array('_BAO_', '_Form_', '_Page_'), '_DAO_', $className);
41 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
42
43 // If that didn't work, try a different pattern
44 if (!$shortName) {
45 list(, $parent, , $child) = explode('_', $className);
46 $daoName = "CRM_{$parent}_DAO_$child";
47 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
48 }
49
50 // If that didn't work, try a different pattern
51 if (!$shortName) {
52 $daoName = "CRM_{$parent}_DAO_$parent";
53 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
54 }
55
56 // If that didn't work, try a different pattern
57 if (!$shortName) {
58 $daoName = "CRM_Core_DAO_$child";
59 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
60 }
61 if (!$shortName) {
62 throw new CRM_Core_Exception('Could not find api name for supplied class');
63 }
64 return _civicrm_api_get_entity_name_from_camel($shortName);
65 }
66 }