INFRA-132 - CRM/ - PHPStorm cleanup
[civicrm-core.git] / CRM / Utils / Wrapper.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * The Contact Wrapper is a wrapper class which is called by
30 * contact.module after it parses the menu path.
31 *
32 * The key elements of the wrapper are the controller and the
33 * run method as explained below.
34 *
35 * @package CRM
36 * @copyright CiviCRM LLC (c) 2004-2014
37 * $Id: $
38 *
39 */
40 class CRM_Utils_Wrapper {
41
42 /**
43 * Simple Controller
44 *
45 * The controller which will handle the display and processing of this page.
46 */
47 protected $_controller;
48
49 /**
50 * Run.
51 *
52 * The heart of the callback processing is done by this method.
53 * forms are of different type and have different operations.
54 *
55 * @param string formName name of the form processing this action
56 * @param string formLabel label for the above form
57 * @param int mode mode of operation.
58 * @param bool addSequence should we add a unique sequence number to the end of the key
59 * @param bool ignoreKey should we not set a qfKey for this controller (for standalone forms)
60 *
61 * @return void
62 */
63 public function run($formName, $formLabel = NULL, $arguments = NULL) {
64 if (is_array($arguments)) {
65 $mode = CRM_Utils_Array::value('mode', $arguments);
66 $imageUpload = (bool) CRM_Utils_Array::value('imageUpload', $arguments, FALSE);
67 $addSequence = (bool) CRM_Utils_Array::value('addSequence', $arguments, FALSE);
68 $attachUpload = (bool) CRM_Utils_Array::value('attachUpload', $arguments, FALSE);
69 $ignoreKey = (bool) CRM_Utils_Array::value('ignoreKey', $arguments, FALSE);
70 }
71 else {
72 $arguments = array();
73 $mode = NULL;
74 $addSequence = $ignoreKey = $imageUpload = $attachUpload = FALSE;
75 }
76
77 $this->_controller = new CRM_Core_Controller_Simple(
78 $formName,
79 $formLabel,
80 $mode,
81 $imageUpload,
82 $addSequence,
83 $ignoreKey,
84 $attachUpload
85 );
86
87 if (array_key_exists('urlToSession', $arguments)) {
88 if (is_array($arguments['urlToSession'])) {
89 foreach ($arguments['urlToSession'] as $params) {
90 $urlVar = CRM_Utils_Array::value('urlVar', $params);
91 $sessionVar = CRM_Utils_Array::value('sessionVar', $params);
92 $type = CRM_Utils_Array::value('type', $params);
93 $default = CRM_Utils_Array::value('default', $params);
94 $abort = CRM_Utils_Array::value('abort', $params, FALSE);
95
96 $value = NULL;
97 $value = CRM_Utils_Request::retrieve(
98 $urlVar,
99 $type,
100 $this->_controller,
101 $abort,
102 $default
103 );
104 $this->_controller->set($sessionVar, $value);
105 }
106 }
107 }
108
109 if (array_key_exists('setEmbedded', $arguments)) {
110 $this->_controller->setEmbedded(TRUE);
111 }
112
113 $this->_controller->process();
114 return $this->_controller->run();
115 }
116 }