Merge pull request #743 from kurund/CRM-12601
[civicrm-core.git] / xml / templates / listAll.tpl
CommitLineData
6b5ff8c9
ARW
1<?php
2
3/*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.3 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2013 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2013
33 * $Id$
34 *
35 */
36
4d1d7aca 37class CRM_Core_DAO_AllCoreTables {ldelim}
6b5ff8c9 38
4d1d7aca 39 static $tables = array(
6b5ff8c9 40{foreach from=$tables key=tableName item=table}
7ed1fb84 41 '{$tableName}' => '{$table.className}',
6b5ff8c9
ARW
42{/foreach} {* tables *}
43 );
44
4d1d7aca 45 static $daoToClass = array(
58d8ecd0 46
6b5ff8c9
ARW
47{foreach from=$tables item=table}
48 '{$table.objectName}' => '{$table.className}',
49{/foreach} {* tables *}
50 );
51
52 static public function getCoreTables() {ldelim}
53 return self::$tables;
54 {rdelim}
55
56 static public function isCoreTable($tableName) {ldelim}
57 return FALSE !== array_search($tableName, self::$tables);
58 {rdelim}
59
439a6148
TO
60 static public function getClasses() {ldelim}
61 return array_values(self::$daoToClass);
62 {rdelim}
63
64 static public function getClassForTable($tableName) {ldelim}
7ed1fb84 65 return CRM_Utils_Array::value($tableName, self::$tables);
439a6148
TO
66 {rdelim}
67
6b5ff8c9
ARW
68 static public function getFullName($daoName) {ldelim}
69 return CRM_Utils_Array::value($daoName, self::$daoToClass);
70 {rdelim}
71
72{rdelim}