Style - Remove @access
[civicrm-core.git] / CRM / Admin / Form / PdfFormats.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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-2014
33 * $Id$
34 *
35 */
36
37 /**
38 * This class generates form components for PDF Page Format Settings
39 *
40 */
41 class CRM_Admin_Form_PdfFormats extends CRM_Admin_Form {
42
43 /**
44 * PDF Page Format ID
45 */
46 protected $_id = NULL;
47
48 /**
49 * Build the form object
50 *
51 * @return void
52 */
53 public function buildQuickForm() {
54 parent::buildQuickForm();
55
56 if ($this->_action & CRM_Core_Action::DELETE) {
57 $formatName = CRM_Core_BAO_PdfFormat::getFieldValue('CRM_Core_BAO_PdfFormat', $this->_id, 'name');
58 $this->assign('formatName', $formatName);
59 return;
60 }
61
62 $attributes = CRM_Core_DAO::getAttribute('CRM_Core_BAO_PdfFormat');
63 $this->add('text', 'name', ts('Name'), $attributes['name'], TRUE);
64 $this->add('text', 'description', ts('Description'), array('size' => CRM_Utils_Type::HUGE));
65 $this->add('checkbox', 'is_default', ts('Is this PDF Page Format the default?'));
66
67 $this->add('select', 'paper_size', ts('Paper Size'),
68 array(
69 0 => ts('- default -')) + CRM_Core_BAO_PaperSize::getList(TRUE), FALSE,
70 array('onChange' => "selectPaper( this.value );")
71 );
72
73 $this->add('static', 'paper_dimensions', NULL, ts('Width x Height'));
74 $this->add('select', 'orientation', ts('Orientation'), CRM_Core_BAO_PdfFormat::getPageOrientations(), FALSE,
75 array('onChange' => "updatePaperDimensions();")
76 );
77 $this->add('select', 'metric', ts('Unit of Measure'), CRM_Core_BAO_PdfFormat::getUnits(), FALSE,
78 array('onChange' => "selectMetric( this.value );")
79 );
80 $this->add('text', 'margin_left', ts('Left Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
81 $this->add('text', 'margin_right', ts('Right Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
82 $this->add('text', 'margin_top', ts('Top Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
83 $this->add('text', 'margin_bottom', ts('Bottom Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
84 $this->add('text', 'weight', ts('Weight'), CRM_Core_DAO::getAttribute('CRM_Core_BAO_PdfFormat', 'weight'), TRUE);
85
86 $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array('CRM_Core_BAO_PdfFormat', $this->_id));
87 $this->addRule('margin_left', ts('Margin must be numeric'), 'numeric');
88 $this->addRule('margin_right', ts('Margin must be numeric'), 'numeric');
89 $this->addRule('margin_top', ts('Margin must be numeric'), 'numeric');
90 $this->addRule('margin_bottom', ts('Margin must be numeric'), 'numeric');
91 $this->addRule('weight', ts('Weight must be integer'), 'integer');
92 }
93
94 /**
95 * @return int
96 */
97 public function setDefaultValues() {
98 if ($this->_action & CRM_Core_Action::ADD) {
99 $defaults['weight'] = CRM_Utils_Array::value('weight', CRM_Core_BAO_PdfFormat::getDefaultValues(), 0);
100 }
101 else {
102 $defaults = $this->_values;
103 }
104 return $defaults;
105 }
106
107 /**
108 * Process the form submission
109 *
110 *
111 * @return void
112 */
113 public function postProcess() {
114 if ($this->_action & CRM_Core_Action::DELETE) {
115 // delete PDF Page Format
116 CRM_Core_BAO_PdfFormat::del($this->_id);
117 CRM_Core_Session::setStatus(ts('Selected PDF Page Format has been deleted.'), ts('Record Deleted'), 'success');
118 return;
119 }
120
121 $values = $this->controller->exportValues($this->getName());
122 $values['is_default'] = isset($values['is_default']);
123 $bao = new CRM_Core_BAO_PdfFormat();
124 $bao->savePdfFormat($values, $this->_id);
125
126 $status = ts('Your new PDF Page Format titled <strong>%1</strong> has been saved.', array(1 => $values['name']), ts('Saved'), 'success');
127 if ($this->_action & CRM_Core_Action::UPDATE) {
128 $status = ts('Your PDF Page Format titled <strong>%1</strong> has been updated.', array(1 => $values['name']), ts('Saved'), 'success');
129 }
130 CRM_Core_Session::setStatus($status);
131 }
132 }