Merge pull request #2712 from pratik-joshi/CRM-14363
[civicrm-core.git] / CRM / Financial / Form / FinancialType.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.4 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
33 * $Id$
34 *
35 */
36
37 /**
38 * This class generates form components for Financial Type
39 *
40 */
41 class CRM_Financial_Form_FinancialType extends CRM_Contribute_Form {
42
43 /**
44 * Function to build the form
45 *
46 * @return void
47 * @access public
48 */
49 public function buildQuickForm() {
50 parent::buildQuickForm();
51
52 $this->_id = CRM_Utils_Request::retrieve('id' , 'Positive', $this);
53 if ($this->_id) {
54 $this->_title = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $this->_id, 'name');
55 CRM_Utils_System::setTitle($this->_title . ' - ' . ts( 'Financial Type'));
56 }
57 if ($this->_action & CRM_Core_Action::DELETE) {
58 return;
59 }
60 $this->applyFilter('__ALL__', 'trim');
61 $this->add('text', 'name', ts('Name'), CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialType', 'name'), TRUE);
62
63 $this->add('text', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialType', 'description'));
64
65 $this->add('checkbox', 'is_deductible', ts('Tax-Deductible?'), CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialType', 'is_deductible'));
66 $this->add('checkbox', 'is_active', ts('Enabled?'), CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialType', 'is_active'));
67 $this->add('checkbox', 'is_reserved', ts('Reserved?'), CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialType', 'is_reserved'));
68 if ($this->_action == CRM_Core_Action::UPDATE) {
69 $this->assign('aid', $this->_id);
70 }
71 if ($this->_action == CRM_Core_Action::UPDATE && CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $this->_id, 'is_reserved','vid')) {
72 $this->freeze(array('is_active'));
73 }
74
75 //$this->addFormRule( array( 'CRM_Financial_Form_FinancialType', 'formRule'), $this );
76 }
77
78 /**
79 * Function to process the form
80 *
81 * @access public
82 * @return void
83 */
84 public function postProcess() {
85 if ($this->_action & CRM_Core_Action::DELETE) {
86 $errors = CRM_Financial_BAO_FinancialType::del($this->_id);
87 if (!empty($errors)) {
88 $message = ts('This item cannot be deleted.') . $errors['error_message'];
89 CRM_Core_Session::setStatus($message);
90 return CRM_Utils_System::redirect(CRM_Utils_System::url( 'civicrm/admin/financial/financialType', "reset=1&action=browse"));
91 }
92 CRM_Core_Session::setStatus(ts('Selected financial type has been deleted.'));
93 }
94 else {
95 $params = $ids = array( );
96 // store the submitted values in an array
97 $params = $this->exportValues();
98
99 if ($this->_action & CRM_Core_Action::UPDATE) {
100 $ids['financialType'] = $this->_id;
101 }
102
103 $financialType = CRM_Financial_BAO_FinancialType::add($params, $ids);
104 if ($this->_action & CRM_Core_Action::UPDATE) {
105 $url = CRM_Utils_System::url('civicrm/admin/financial/financialType', 'reset=1&action=browse');
106 CRM_Core_Session::setStatus(ts('The financial type \'%1\' has been saved.', array( 1 => $financialType->name)));
107 }
108 else {
109 $url = CRM_Utils_System::url('civicrm/admin/financial/financialType/accounts', 'reset=1&action=browse&aid=' . $financialType->id);
110 $statusArray = array(
111 1 => $financialType->name,
112 2 => $financialType->name,
113 3 => $financialType->titles[0],
114 4 => $financialType->titles[1],
115 5 => $financialType->titles[2],
116 );
117 CRM_Core_Session::setStatus(ts('Your Financial \'%1\' Type has been created, along with a corresponding income account \'%2\'. That income account, along with standard financial accounts \'%3\', \'%4\' and \'%5\' have been linked to the financial type. You may edit or replace those relationships here.', $statusArray));
118 }
119
120 $session = CRM_Core_Session::singleton();
121 $session->replaceUserContext($url);
122 }
123 }
124 }