Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-03-03-23-44-14
[civicrm-core.git] / CRM / Admin / Page / Mapping.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 */
48 static $_links = NULL;
49
50 /**
51 * Get BAO.
52 *
53 * @return string
54 * Classname of BAO.
55 */
56 public function getBAOName() {
57 return 'CRM_Core_BAO_Mapping';
58 }
59
60 /**
61 * Get action Links.
62 *
63 * @return array
64 * (reference) of action links
65 */
66 public function &links() {
67 if (!(self::$_links)) {
68 // helper variable for nicer formatting
69 $deleteExtra = ts('Are you sure you want to delete this mapping?') . ' ' . ts('This operation cannot be undone.');
70 self::$_links = array(
71 CRM_Core_Action::UPDATE => array(
72 'name' => ts('Edit'),
73 'url' => 'civicrm/admin/mapping',
74 'qs' => 'action=update&id=%%id%%&reset=1',
75 'title' => ts('Edit Mapping'),
76 ),
77 CRM_Core_Action::DELETE => array(
78 'name' => ts('Delete'),
79 'url' => 'civicrm/admin/mapping',
80 'qs' => 'action=delete&id=%%id%%',
81 'title' => ts('Delete Mapping'),
82 ),
83 );
84 }
85 return self::$_links;
86 }
87
88 /**
89 * Get name of edit form.
90 *
91 * @return string
92 * Classname of edit form.
93 */
94 public function editForm() {
95 return 'CRM_Admin_Form_Mapping';
96 }
97
98 /**
99 * Get form name for edit form.
100 *
101 * @return string
102 * name of this page.
103 */
104 public function editName() {
105 return 'Mapping';
106 }
107
108 /**
109 * Get form name for delete form.
110 *
111 * @return string
112 * name of this page.
113 */
114 public function deleteName() {
115 return 'Mapping';
116 }
117
118 /**
119 * Get user context.
120 *
121 * @param null $mode
122 *
123 * @return string
124 * user context.
125 */
126 public function userContext($mode = NULL) {
127 return 'civicrm/admin/mapping';
128 }
129
130 /**
131 * Get name of delete form.
132 *
133 * @return string
134 * Classname of delete form.
135 */
136 public function deleteForm() {
137 return 'CRM_Admin_Form_Mapping';
138 }
139
140 /**
141 * Run the basic page.
142 *
143 * @return void
144 */
145 public function run() {
146 $sort = 'mapping_type asc';
147 return parent::run($sort);
148 }
149
150 }