Merge pull request #4863 from totten/master-phpcbf4
[civicrm-core.git] / CRM / Admin / Page / Mapping.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for displaying list of categories
38 */
39class CRM_Admin_Page_Mapping extends CRM_Core_Page_Basic {
40
e2046b33
CW
41 public $useLivePageJS = TRUE;
42
6a488035
TO
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 */
00be9182 56 public function getBAOName() {
6a488035
TO
57 return 'CRM_Core_BAO_Mapping';
58 }
59
60 /**
61 * Get action Links
62 *
63 * @return array (reference) of action links
64 */
00be9182 65 public function &links() {
6a488035
TO
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 */
00be9182 92 public function editForm() {
6a488035
TO
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 */
00be9182 101 public function editName() {
6a488035
TO
102 return 'Mapping';
103 }
104
105 /**
106 * Get form name for delete form
107 *
108 * @return string name of this page.
109 */
00be9182 110 public function deleteName() {
6a488035
TO
111 return 'Mapping';
112 }
113
114 /**
115 * Get user context.
116 *
dd244018
EM
117 * @param null $mode
118 *
6a488035
TO
119 * @return string user context.
120 */
00be9182 121 public function userContext($mode = NULL) {
6a488035
TO
122 return 'civicrm/admin/mapping';
123 }
124
125 /**
126 * Get name of delete form
127 *
128 * @return string Classname of delete form.
129 */
00be9182 130 public function deleteForm() {
6a488035
TO
131 return 'CRM_Admin_Form_Mapping';
132 }
133
134 /**
135 * Run the basic page
136 *
137 * @return void
138 */
00be9182 139 public function run() {
6a488035
TO
140 $sort = 'mapping_type asc';
141 return parent::run($sort);
142 }
143}