Merge pull request #5077 from eileenmcnaughton/comment-full-stops
[civicrm-core.git] / CRM / Admin / Page / ContactType.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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
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 contact Subtypes
38 */
39class CRM_Admin_Page_ContactType extends CRM_Core_Page_Basic {
40
96f50de2
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
6a488035
TO
47 */
48 static $_links = NULL;
49
50 /**
51 * Get BAO Name
52 *
a6c01b45
CW
53 * @return string
54 * Classname of BAO.
6a488035 55 */
00be9182 56 public function getBAOName() {
6a488035
TO
57 return 'CRM_Contact_BAO_ContactType';
58 }
59
60 /**
61 * Get action Links
62 *
a6c01b45
CW
63 * @return array
64 * (reference) of action links
6a488035 65 */
00be9182 66 public function &links() {
6a488035
TO
67 if (!(self::$_links)) {
68 self::$_links = array(
9d72cede 69 CRM_Core_Action::UPDATE => array(
6a488035
TO
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 ),
9d72cede 75 CRM_Core_Action::DISABLE => array(
6a488035 76 'name' => ts('Disable'),
4d17a233 77 'ref' => 'crm-enable-disable',
6a488035
TO
78 'title' => ts('Disable Contact Type'),
79 ),
9d72cede 80 CRM_Core_Action::ENABLE => array(
6a488035 81 'name' => ts('Enable'),
4d17a233 82 'ref' => 'crm-enable-disable',
6a488035
TO
83 'title' => ts('Enable Contact Type'),
84 ),
9d72cede 85 CRM_Core_Action::DELETE => array(
6a488035
TO
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
00be9182 96 public function run() {
6a488035
TO
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
00be9182 106 public function browse() {
6a488035
TO
107 $rows = CRM_Contact_BAO_ContactType::contactTypeInfo(TRUE);
108 foreach ($rows as $key => $value) {
109 $mask = NULL;
a7488080 110 if (!empty($value['is_reserved'])) {
6a488035
TO
111 $mask = CRM_Core_Action::UPDATE;
112 }
113 else {
114 $mask -= CRM_Core_Action::DELETE - 2;
a7488080 115 if (!empty($value['is_active'])) {
6a488035
TO
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,
87dab4a4
AH
123 array('id' => $value['id']),
124 ts('more'),
125 FALSE,
126 'contactType.manage.action',
127 'ContactType',
128 $value['id']
6a488035
TO
129 );
130 }
131 $this->assign('rows', $rows);
132 }
133
134 /**
135 * Get name of edit form
136 *
a6c01b45
CW
137 * @return string
138 * Classname of edit form.
6a488035 139 */
00be9182 140 public function editForm() {
6a488035
TO
141 return 'CRM_Admin_Form_ContactType';
142 }
143
144 /**
145 * Get edit form name
146 *
a6c01b45
CW
147 * @return string
148 * name of this page.
6a488035 149 */
00be9182 150 public function editName() {
6a488035
TO
151 return 'Contact Types';
152 }
153
154 /**
155 * Get user context.
156 *
da6b46f4
EM
157 * @param null $mode
158 *
a6c01b45
CW
159 * @return string
160 * user context.
6a488035 161 */
00be9182 162 public function userContext($mode = NULL) {
6a488035
TO
163 return 'civicrm/admin/options/subtype';
164 }
96025800 165
6a488035 166}