ac9bb3587f82b4db4bcf408ad2255c88ac0a33f1
[civicrm-core.git] / CRM / Admin / Page / Mapping.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 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Page for displaying list of categories
38 */
39 class CRM_Admin_Page_Mapping extends CRM_Core_Page_Basic {
40
41 public $useLivePageJS = TRUE;
42
43 /**
44 * The action links that we need to display for the browse screen
45 *
46 * @var array
47 * @static
48 */
49 static $_links = NULL;
50
51 /**
52 * Get BAO
53 *
54 * @return string Classname of BAO.
55 */
56 function getBAOName() {
57 return 'CRM_Core_BAO_Mapping';
58 }
59
60 /**
61 * Get action Links
62 *
63 * @return array (reference) of action links
64 */
65 function &links() {
66 if (!(self::$_links)) {
67 // helper variable for nicer formatting
68 $deleteExtra = ts('Are you sure you want to delete this mapping?') . ' ' . ts('This operation cannot be undone.');
69 self::$_links = array(
70 CRM_Core_Action::UPDATE => array(
71 'name' => ts('Edit'),
72 'url' => 'civicrm/admin/mapping',
73 'qs' => 'action=update&id=%%id%%&reset=1',
74 'title' => ts('Edit Mapping'),
75 ),
76 CRM_Core_Action::DELETE => array(
77 'name' => ts('Delete'),
78 'url' => 'civicrm/admin/mapping',
79 'qs' => 'action=delete&id=%%id%%',
80 'title' => ts('Delete Mapping'),
81 ),
82 );
83 }
84 return self::$_links;
85 }
86
87 /**
88 * Get name of edit form
89 *
90 * @return string Classname of edit form.
91 */
92 function editForm() {
93 return 'CRM_Admin_Form_Mapping';
94 }
95
96 /**
97 * Get form name for edit form
98 *
99 * @return string name of this page.
100 */
101 function editName() {
102 return 'Mapping';
103 }
104
105 /**
106 * Get form name for delete form
107 *
108 * @return string name of this page.
109 */
110 function deleteName() {
111 return 'Mapping';
112 }
113
114 /**
115 * Get user context.
116 *
117 * @param null $mode
118 *
119 * @return string user context.
120 */
121 function userContext($mode = NULL) {
122 return 'civicrm/admin/mapping';
123 }
124
125 /**
126 * Get name of delete form
127 *
128 * @return string Classname of delete form.
129 */
130 function deleteForm() {
131 return 'CRM_Admin_Form_Mapping';
132 }
133
134 /**
135 * Run the basic page
136 *
137 * @return void
138 */
139 function run() {
140 $sort = 'mapping_type asc';
141 return parent::run($sort);
142 }
143 }
144