Merge pull request #3649 from colemanw/totten-colemanw-validate
[civicrm-core.git] / CRM / Admin / Page / ContactType.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 contact Subtypes
38 */
39 class CRM_Admin_Page_ContactType 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 Name
53 *
54 * @return string Classname of BAO.
55 */
56 function getBAOName() {
57 return 'CRM_Contact_BAO_ContactType';
58 }
59
60 /**
61 * Get action Links
62 *
63 * @return array (reference) of action links
64 */
65 function &links() {
66 if (!(self::$_links)) {
67 self::$_links = array(
68 CRM_Core_Action::UPDATE =>
69 array(
70 'name' => ts('Edit'),
71 'url' => 'civicrm/admin/options/subtype',
72 'qs' => 'action=update&id=%%id%%&reset=1',
73 'title' => ts('Edit Contact Type'),
74 ),
75 CRM_Core_Action::DISABLE =>
76 array(
77 'name' => ts('Disable'),
78 'ref' => 'crm-enable-disable',
79 'title' => ts('Disable Contact Type'),
80 ),
81 CRM_Core_Action::ENABLE =>
82 array(
83 'name' => ts('Enable'),
84 'ref' => 'crm-enable-disable',
85 'title' => ts('Enable Contact Type'),
86 ),
87 CRM_Core_Action::DELETE =>
88 array(
89 'name' => ts('Delete'),
90 'url' => 'civicrm/admin/options/subtype',
91 'qs' => 'action=delete&id=%%id%%',
92 'title' => ts('Delete Contact Type'),
93 ),
94 );
95 }
96 return self::$_links;
97 }
98
99 function run() {
100 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 0);
101 $this->assign('action', $action);
102 $id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
103 if (!$action) {
104 $this->browse();
105 }
106 return parent::run();
107 }
108
109 function browse() {
110 $rows = CRM_Contact_BAO_ContactType::contactTypeInfo(TRUE);
111 foreach ($rows as $key => $value) {
112 $mask = NULL;
113 if (!empty($value['is_reserved'])) {
114 $mask = CRM_Core_Action::UPDATE;
115 }
116 else {
117 $mask -= CRM_Core_Action::DELETE - 2;
118 if (!empty($value['is_active'])) {
119 $mask -= CRM_Core_Action::ENABLE;
120 }
121 else {
122 $mask -= CRM_Core_Action::DISABLE;
123 }
124 }
125 $rows[$key]['action'] = CRM_Core_Action::formLink(self::links(), $mask,
126 array('id' => $value['id']),
127 ts('more'),
128 FALSE,
129 'contactType.manage.action',
130 'ContactType',
131 $value['id']
132 );
133 }
134 $this->assign('rows', $rows);
135 }
136
137 /**
138 * Get name of edit form
139 *
140 * @return string Classname of edit form.
141 */
142 function editForm() {
143 return 'CRM_Admin_Form_ContactType';
144 }
145
146 /**
147 * Get edit form name
148 *
149 * @return string name of this page.
150 */
151 function editName() {
152 return 'Contact Types';
153 }
154
155 /**
156 * Get user context.
157 *
158 * @param null $mode
159 *
160 * @return string user context.
161 */
162 function userContext($mode = NULL) {
163 return 'civicrm/admin/options/subtype';
164 }
165 }
166