Merge pull request #12821 from mattwire/updatesubscription_fix
[civicrm-core.git] / CRM / Admin / Page / PdfFormats.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright (C) 2011 Marty Wright |
7 | Licensed to CiviCRM under the Academic Free License version 3.0. |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2018
33 */
34
35 /**
36 * Page for displaying list of PDF Page Formats.
37 */
38 class CRM_Admin_Page_PdfFormats extends CRM_Core_Page_Basic {
39
40 public $useLivePageJS = TRUE;
41
42 /**
43 * The action links that we need to display for the browse screen.
44 *
45 * @var array
46 */
47 static $_links = NULL;
48
49 /**
50 * Get BAO Name.
51 *
52 * @return string
53 * Classname of BAO.
54 */
55 public function getBAOName() {
56 return 'CRM_Core_BAO_PdfFormat';
57 }
58
59 /**
60 * Get action Links.
61 *
62 * @return array
63 * (reference) of action links
64 */
65 public function &links() {
66 if (!(self::$_links)) {
67 // helper variable for nicer formatting
68 self::$_links = array(
69 CRM_Core_Action::UPDATE => array(
70 'name' => ts('Edit'),
71 'url' => 'civicrm/admin/pdfFormats',
72 'qs' => 'action=update&id=%%id%%&reset=1',
73 'title' => ts('Edit PDF Page Format'),
74 ),
75 CRM_Core_Action::DELETE => array(
76 'name' => ts('Delete'),
77 'url' => 'civicrm/admin/pdfFormats',
78 'qs' => 'action=delete&id=%%id%%',
79 'title' => ts('Delete PDF Page Format'),
80 ),
81 );
82 }
83
84 return self::$_links;
85 }
86
87 /**
88 * Get name of edit form.
89 *
90 * @return string
91 * Classname of edit form.
92 */
93 public function editForm() {
94 return 'CRM_Admin_Form_PdfFormats';
95 }
96
97 /**
98 * Get edit form name.
99 *
100 * @return string
101 * name of this page.
102 */
103 public function editName() {
104 return 'PDF Page Formats';
105 }
106
107 /**
108 * Get user context.
109 *
110 * @param null $mode
111 *
112 * @return string
113 * user context.
114 */
115 public function userContext($mode = NULL) {
116 return 'civicrm/admin/pdfFormats';
117 }
118
119 /**
120 * Browse all PDF Page Formats.
121 *
122 * @param null $action
123 */
124 public function browse($action = NULL) {
125 // Get list of configured PDF Page Formats
126 $pdfFormatList = CRM_Core_BAO_PdfFormat::getList();
127
128 // Add action links to each of the PDF Page Formats
129 $action = array_sum(array_keys($this->links()));
130 foreach ($pdfFormatList as & $format) {
131 $format['action'] = CRM_Core_Action::formLink(
132 self::links(),
133 $action,
134 array('id' => $format['id']),
135 ts('more'),
136 FALSE,
137 'pdfFormat.manage.action',
138 'PdfFormat',
139 $format['id']
140 );
141 }
142
143 // Order Label Formats by weight
144 $returnURL = CRM_Utils_System::url(self::userContext());
145 CRM_Core_BAO_PdfFormat::addOrder($pdfFormatList, $returnURL);
146
147 $this->assign('rows', $pdfFormatList);
148 }
149
150 }