Merge pull request #14024 from civicrm/5.13
[civicrm-core.git] / CRM / Badge / Page / Layout.php
CommitLineData
50998125
KJ
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
50998125 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
50998125
KJ
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 */
50998125
KJ
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
50998125
KJ
32 */
33
34/**
3819f101 35 * Page for list page badges.
50998125
KJ
36 */
37class CRM_Badge_Page_Layout extends CRM_Core_Page_Basic {
38
39 /**
eceb18cc 40 * The action links that we need to display for the browse screen.
50998125
KJ
41 *
42 * @var array
50998125
KJ
43 */
44 static $_links = NULL;
45
46 /**
eceb18cc 47 * Get BAO Name.
50998125 48 *
a6c01b45
CW
49 * @return string
50 * Classname of BAO.
50998125 51 */
00be9182 52 public function getBAOName() {
d2e138ee 53 return 'CRM_Badge_BAO_Layout';
50998125
KJ
54 }
55
56 /**
eceb18cc 57 * Get action Links.
50998125 58 *
a6c01b45
CW
59 * @return array
60 * (reference) of action links
50998125 61 */
00be9182 62 public function &links() {
50998125 63 if (!(self::$_links)) {
be2fb01f
CW
64 self::$_links = [
65 CRM_Core_Action::UPDATE => [
50998125
KJ
66 'name' => ts('Edit'),
67 'url' => 'civicrm/admin/badgelayout',
68 'qs' => 'action=update&id=%%id%%&reset=1',
69 'title' => ts('Edit Badge Layout'),
be2fb01f
CW
70 ],
71 CRM_Core_Action::DISABLE => [
50998125 72 'name' => ts('Disable'),
4d17a233 73 'ref' => 'crm-enable-disable',
50998125 74 'title' => ts('Disable Badge Layout'),
be2fb01f
CW
75 ],
76 CRM_Core_Action::ENABLE => [
50998125 77 'name' => ts('Enable'),
4d17a233 78 'ref' => 'crm-enable-disable',
50998125 79 'title' => ts('Enable Badge Layout'),
be2fb01f
CW
80 ],
81 CRM_Core_Action::DELETE => [
50998125
KJ
82 'name' => ts('Delete'),
83 'url' => 'civicrm/admin/badgelayout',
84 'qs' => 'action=delete&id=%%id%%',
85 'title' => ts('Delete Badge Layout'),
be2fb01f
CW
86 ],
87 ];
50998125
KJ
88 }
89 return self::$_links;
90 }
91
92 /**
eceb18cc 93 * Get name of edit form.
50998125 94 *
a6c01b45
CW
95 * @return string
96 * Classname of edit form.
50998125 97 */
00be9182 98 public function editForm() {
50998125
KJ
99 return 'CRM_Badge_Form_Layout';
100 }
101
102 /**
eceb18cc 103 * Get edit form name.
50998125 104 *
a6c01b45
CW
105 * @return string
106 * name of this page.
50998125 107 */
00be9182 108 public function editName() {
50998125
KJ
109 return 'Badge Layout';
110 }
111
112 /**
113 * Get user context.
114 *
6c8f6e67
EM
115 * @param null $mode
116 *
a6c01b45
CW
117 * @return string
118 * user context.
50998125 119 */
00be9182 120 public function userContext($mode = NULL) {
50998125
KJ
121 return 'civicrm/admin/badgelayout';
122 }
96025800 123
50998125 124}