CRM-15058 - Cleanup and js bug fixes in ScheduleReminder forms
[civicrm-core.git] / CRM / Admin / Page / RelationshipType.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 relationship types
38 */
39class CRM_Admin_Page_RelationshipType 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
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_RelationshipType';
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::VIEW => array(
69 'name' => ts('View'),
70 'url' => 'civicrm/admin/reltype',
71 'qs' => 'action=view&id=%%id%%&reset=1',
72 'title' => ts('View Relationship Type'),
73 ),
74 CRM_Core_Action::UPDATE => array(
75 'name' => ts('Edit'),
76 'url' => 'civicrm/admin/reltype',
77 'qs' => 'action=update&id=%%id%%&reset=1',
78 'title' => ts('Edit Relationship Type'),
79 ),
80 CRM_Core_Action::DISABLE => array(
81 'name' => ts('Disable'),
4d17a233 82 'ref' => 'crm-enable-disable',
6a488035
TO
83 'title' => ts('Disable Relationship Type'),
84 ),
85 CRM_Core_Action::ENABLE => array(
86 'name' => ts('Enable'),
4d17a233 87 'ref' => 'crm-enable-disable',
6a488035
TO
88 'title' => ts('Enable Relationship Type'),
89 ),
90 CRM_Core_Action::DELETE => array(
91 'name' => ts('Delete'),
92 'url' => 'civicrm/admin/reltype',
93 'qs' => 'action=delete&id=%%id%%',
94 'title' => ts('Delete Reletionship Type'),
95 ),
96 );
97 }
98 return self::$_links;
99 }
100
101 /**
102 * Get name of edit form
103 *
104 * @return string Classname of edit form.
105 */
106 function editForm() {
107 return 'CRM_Admin_Form_RelationshipType';
108 }
109
110 /**
111 * Get edit form name
112 *
113 * @return string name of this page.
114 */
115 function editName() {
116 return 'Relationship Types';
117 }
118
119 /**
120 * Get user context.
121 *
6c8f6e67
EM
122 * @param null $mode
123 *
6a488035
TO
124 * @return string user context.
125 */
126 function userContext($mode = NULL) {
127 return 'civicrm/admin/reltype';
128 }
129}
130