CRM-16019 - Expose date/time format preferences to clientside
[civicrm-core.git] / CRM / Admin / Form / PdfFormats.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 27 */
6a488035
TO
28
29/**
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36
37/**
38 * This class generates form components for PDF Page Format Settings
39 *
40 */
41class CRM_Admin_Form_PdfFormats extends CRM_Admin_Form {
42
43 /**
eceb18cc 44 * PDF Page Format ID.
6a488035
TO
45 */
46 protected $_id = NULL;
47
48 /**
eceb18cc 49 * Build the form object.
6a488035 50 *
355ba699 51 * @return void
6a488035
TO
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(
317fceb4 69 0 => ts('- default -'),
353ffa53 70 ) + CRM_Core_BAO_PaperSize::getList(TRUE), FALSE,
6a488035
TO
71 array('onChange' => "selectPaper( this.value );")
72 );
73
74 $this->add('static', 'paper_dimensions', NULL, ts('Width x Height'));
75 $this->add('select', 'orientation', ts('Orientation'), CRM_Core_BAO_PdfFormat::getPageOrientations(), FALSE,
76 array('onChange' => "updatePaperDimensions();")
77 );
78 $this->add('select', 'metric', ts('Unit of Measure'), CRM_Core_BAO_PdfFormat::getUnits(), FALSE,
79 array('onChange' => "selectMetric( this.value );")
80 );
81 $this->add('text', 'margin_left', ts('Left Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
82 $this->add('text', 'margin_right', ts('Right Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
83 $this->add('text', 'margin_top', ts('Top Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
84 $this->add('text', 'margin_bottom', ts('Bottom Margin'), array('size' => 8, 'maxlength' => 8), TRUE);
7ecddde4 85 $this->add('text', 'weight', ts('Order'), CRM_Core_DAO::getAttribute('CRM_Core_BAO_PdfFormat', 'weight'), TRUE);
6a488035 86
353ffa53
TO
87 $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array(
88 'CRM_Core_BAO_PdfFormat',
317fceb4 89 $this->_id,
353ffa53 90 ));
6a488035
TO
91 $this->addRule('margin_left', ts('Margin must be numeric'), 'numeric');
92 $this->addRule('margin_right', ts('Margin must be numeric'), 'numeric');
93 $this->addRule('margin_top', ts('Margin must be numeric'), 'numeric');
94 $this->addRule('margin_bottom', ts('Margin must be numeric'), 'numeric');
95 $this->addRule('weight', ts('Weight must be integer'), 'integer');
96 }
97
e0ef6999
EM
98 /**
99 * @return int
100 */
00be9182 101 public function setDefaultValues() {
6a488035
TO
102 if ($this->_action & CRM_Core_Action::ADD) {
103 $defaults['weight'] = CRM_Utils_Array::value('weight', CRM_Core_BAO_PdfFormat::getDefaultValues(), 0);
104 }
105 else {
106 $defaults = $this->_values;
107 }
108 return $defaults;
109 }
110
111 /**
eceb18cc 112 * Process the form submission.
6a488035 113 *
6a488035 114 *
355ba699 115 * @return void
6a488035
TO
116 */
117 public function postProcess() {
118 if ($this->_action & CRM_Core_Action::DELETE) {
119 // delete PDF Page Format
120 CRM_Core_BAO_PdfFormat::del($this->_id);
121 CRM_Core_Session::setStatus(ts('Selected PDF Page Format has been deleted.'), ts('Record Deleted'), 'success');
122 return;
123 }
124
125 $values = $this->controller->exportValues($this->getName());
126 $values['is_default'] = isset($values['is_default']);
127 $bao = new CRM_Core_BAO_PdfFormat();
128 $bao->savePdfFormat($values, $this->_id);
129
130 $status = ts('Your new PDF Page Format titled <strong>%1</strong> has been saved.', array(1 => $values['name']), ts('Saved'), 'success');
131 if ($this->_action & CRM_Core_Action::UPDATE) {
132 $status = ts('Your PDF Page Format titled <strong>%1</strong> has been updated.', array(1 => $values['name']), ts('Saved'), 'success');
133 }
134 CRM_Core_Session::setStatus($status);
135 }
96025800 136
6a488035 137}