commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Admin / Page / ContactType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
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 */
48 static $_links = NULL;
49
50 /**
51 * Get BAO Name.
52 *
53 * @return string
54 * Classname of BAO.
55 */
56 public function getBAOName() {
57 return 'CRM_Contact_BAO_ContactType';
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 self::$_links = array(
69 CRM_Core_Action::UPDATE => 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 => array(
76 'name' => ts('Disable'),
77 'ref' => 'crm-enable-disable',
78 'title' => ts('Disable Contact Type'),
79 ),
80 CRM_Core_Action::ENABLE => array(
81 'name' => ts('Enable'),
82 'ref' => 'crm-enable-disable',
83 'title' => ts('Enable Contact Type'),
84 ),
85 CRM_Core_Action::DELETE => array(
86 'name' => ts('Delete'),
87 'url' => 'civicrm/admin/options/subtype',
88 'qs' => 'action=delete&id=%%id%%',
89 'title' => ts('Delete Contact Type'),
90 ),
91 );
92 }
93 return self::$_links;
94 }
95
96 public function run() {
97 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 0);
98 $this->assign('action', $action);
99 $id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
100 if (!$action) {
101 $this->browse();
102 }
103 return parent::run();
104 }
105
106 public function browse() {
107 $rows = CRM_Contact_BAO_ContactType::contactTypeInfo(TRUE);
108 foreach ($rows as $key => $value) {
109 $mask = NULL;
110 if (!empty($value['is_reserved'])) {
111 $mask = CRM_Core_Action::UPDATE;
112 }
113 else {
114 $mask -= CRM_Core_Action::DELETE - 2;
115 if (!empty($value['is_active'])) {
116 $mask -= CRM_Core_Action::ENABLE;
117 }
118 else {
119 $mask -= CRM_Core_Action::DISABLE;
120 }
121 }
122 $rows[$key]['action'] = CRM_Core_Action::formLink(self::links(), $mask,
123 array('id' => $value['id']),
124 ts('more'),
125 FALSE,
126 'contactType.manage.action',
127 'ContactType',
128 $value['id']
129 );
130 }
131 $this->assign('rows', $rows);
132 }
133
134 /**
135 * Get name of edit form.
136 *
137 * @return string
138 * Classname of edit form.
139 */
140 public function editForm() {
141 return 'CRM_Admin_Form_ContactType';
142 }
143
144 /**
145 * Get edit form name.
146 *
147 * @return string
148 * name of this page.
149 */
150 public function editName() {
151 return 'Contact Types';
152 }
153
154 /**
155 * Get user context.
156 *
157 * @param null $mode
158 *
159 * @return string
160 * user context.
161 */
162 public function userContext($mode = NULL) {
163 return 'civicrm/admin/options/subtype';
164 }
165
166 }