Merge pull request #3152 from pradpnayak/CRM-14112
[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 *
34 * @return string
35 * @throws CRM_Core_Exception
36 */
37 static function getEntityName($classNameOrObject) {
38 require_once 'api/api.php';
39 $className = is_string($classNameOrObject) ? $classNameOrObject : get_class($classNameOrObject);
40
41 // First try the obvious replacements
42 $daoName = str_replace(array('_BAO_', '_Form_', '_Page_'), '_DAO_', $className);
43 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
44
45 // If that didn't work, try a different pattern
46 if (!$shortName) {
47 list(, $parent, , $child) = explode('_', $className);
48 $daoName = "CRM_{$parent}_DAO_$child";
49 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
50 }
51
52 // If that didn't work, try a different pattern
53 if (!$shortName) {
54 $daoName = "CRM_{$parent}_DAO_$parent";
55 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
56 }
57
58 // If that didn't work, try a different pattern
59 if (!$shortName) {
60 $daoName = "CRM_Core_DAO_$child";
61 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
62 }
63 if (!$shortName) {
64 throw new CRM_Core_Exception('Could not find api name for supplied class');
65 }
66 return _civicrm_api_get_entity_name_from_camel($shortName);
67 }
68 }