Merge pull request #12758 from samuelsov/DraftMailing
[civicrm-core.git] / CRM / Admin / Page / Mapping.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * Page for displaying list of categories.
36 */
37 class CRM_Admin_Page_Mapping extends CRM_Core_Page_Basic {
38
39 public $useLivePageJS = TRUE;
40
41 /**
42 * The action links that we need to display for the browse screen.
43 *
44 * @var array
45 */
46 static $_links = NULL;
47
48 /**
49 * Get BAO.
50 *
51 * @return string
52 * Classname of BAO.
53 */
54 public function getBAOName() {
55 return 'CRM_Core_BAO_Mapping';
56 }
57
58 /**
59 * Get action Links.
60 *
61 * @return array
62 * (reference) of action links
63 */
64 public function &links() {
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 /**
87 * Get name of edit form.
88 *
89 * @return string
90 * Classname of edit form.
91 */
92 public function editForm() {
93 return 'CRM_Admin_Form_Mapping';
94 }
95
96 /**
97 * Get form name for edit form.
98 *
99 * @return string
100 * name of this page.
101 */
102 public function editName() {
103 return 'Mapping';
104 }
105
106 /**
107 * Get form name for delete form.
108 *
109 * @return string
110 * name of this page.
111 */
112 public function deleteName() {
113 return 'Mapping';
114 }
115
116 /**
117 * Get user context.
118 *
119 * @param null $mode
120 *
121 * @return string
122 * user context.
123 */
124 public function userContext($mode = NULL) {
125 return 'civicrm/admin/mapping';
126 }
127
128 /**
129 * Get name of delete form.
130 *
131 * @return string
132 * Classname of delete form.
133 */
134 public function deleteForm() {
135 return 'CRM_Admin_Form_Mapping';
136 }
137
138 /**
139 * Run the basic page.
140 */
141 public function run() {
142 $sort = 'mapping_type asc';
143 return parent::run($sort);
144 }
145
146 }