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