Merge pull request #4029 from joannechester/Relative-date-filters-undeclared-variable...
[civicrm-core.git] / CRM / Utils / Api.php
CommitLineData
e869b07d
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
e869b07d 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
e869b07d
CW
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
5bc392e6
EM
28/**
29 * Class CRM_Utils_Api
30 */
e869b07d
CW
31class CRM_Utils_Api {
32 /**
764dd190
RS
33 * Attempts to retrieve the API entity name from any calling class.
34 *
35 * @param string|object $classNameOrObject
f4aaa82a
EM
36 *
37 * @return string
e869b07d
CW
38 * @throws CRM_Core_Exception
39 */
40 static function getEntityName($classNameOrObject) {
41 require_once 'api/api.php';
42 $className = is_string($classNameOrObject) ? $classNameOrObject : get_class($classNameOrObject);
43
44 // First try the obvious replacements
45 $daoName = str_replace(array('_BAO_', '_Form_', '_Page_'), '_DAO_', $className);
46 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
47
48 // If that didn't work, try a different pattern
49 if (!$shortName) {
e1462487
CW
50 list(, $parent, , $child) = explode('_', $className);
51 $daoName = "CRM_{$parent}_DAO_$child";
e869b07d
CW
52 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
53 }
54
55 // If that didn't work, try a different pattern
56 if (!$shortName) {
e1462487
CW
57 $daoName = "CRM_{$parent}_DAO_$parent";
58 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
59 }
60
61 // If that didn't work, try a different pattern
62 if (!$shortName) {
63 $daoName = "CRM_Core_DAO_$child";
e869b07d
CW
64 $shortName = CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
65 }
66 if (!$shortName) {
67 throw new CRM_Core_Exception('Could not find api name for supplied class');
68 }
69 return _civicrm_api_get_entity_name_from_camel($shortName);
70 }
71}