@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
6 | - * @license GPLv3 |
|
7 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
6 | + * @license GPLv3 |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | namespace Organizations\Repository; |
10 | 10 |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * Auth Module Bootstrap |
|
5 | - * |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * Auth Module Bootstrap |
|
5 | + * |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | namespace Pdf; |
11 | 11 | |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | protected $appendImage = array(); |
43 | 43 | |
44 | 44 | |
45 | - /** |
|
46 | - * Loads module specific configuration. |
|
47 | - * |
|
48 | - * @return array |
|
49 | - */ |
|
45 | + /** |
|
46 | + * Loads module specific configuration. |
|
47 | + * |
|
48 | + * @return array |
|
49 | + */ |
|
50 | 50 | public function getConfig() |
51 | 51 | { |
52 | 52 | return ModuleConfigLoader::load(__DIR__ . '/config'); |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * Settings Module Bootstrap |
|
5 | - * |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * Settings Module Bootstrap |
|
5 | + * |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** Core */ |
11 | 11 | namespace Settings; |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * Configuration file of the Core module |
|
5 | - * |
|
6 | - * This file intents to provide the configuration for all other modules |
|
7 | - * as well (convention over configuration). |
|
8 | - * Having said that, you may always overwrite or extend the configuration |
|
9 | - * in your own modules configuration file(s) (or via the config autoloading). |
|
10 | - * |
|
11 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
12 | - * @license MIT |
|
13 | - */ |
|
3 | + * YAWIK |
|
4 | + * Configuration file of the Core module |
|
5 | + * |
|
6 | + * This file intents to provide the configuration for all other modules |
|
7 | + * as well (convention over configuration). |
|
8 | + * Having said that, you may always overwrite or extend the configuration |
|
9 | + * in your own modules configuration file(s) (or via the config autoloading). |
|
10 | + * |
|
11 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
12 | + * @license MIT |
|
13 | + */ |
|
14 | 14 | |
15 | 15 | return array( |
16 | 16 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | 'odm_default' => array( |
27 | 27 | 'subscribers' => array( |
28 | 28 | 'Settings/InjectEntityResolverListener', |
29 | - ), |
|
29 | + ), |
|
30 | 30 | ), |
31 | 31 | ), |
32 | 32 | ), |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | - * @license MIT |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de) |
|
7 | + * @license MIT |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** AbstractSettingsForm.php */ |
11 | 11 | namespace Settings\Form; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | $fieldset->setUseAsBaseFieldset(true) |
69 | - ->setName('base'); |
|
69 | + ->setName('base'); |
|
70 | 70 | |
71 | 71 | $fieldset->setObject($object); |
72 | 72 | $this->add($fieldset); |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | { |
93 | 93 | parent::setName(strtolower($name) . '-settings'); |
94 | 94 | $urlHelper = $this->forms->getServiceLocator() |
95 | - ->get('ViewHelperManager') |
|
96 | - ->get('url'); |
|
95 | + ->get('ViewHelperManager') |
|
96 | + ->get('url'); |
|
97 | 97 | |
98 | 98 | $url = $urlHelper('lang/settings', array('module' => $name), true); |
99 | 99 | $this->setAttribute('action', $url); |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @license MIT |
|
7 | - * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @license MIT |
|
7 | + * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** */ |
11 | 11 | namespace Settings\Form\Element; |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @license MIT |
|
7 | - * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @license MIT |
|
7 | + * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** */ |
11 | 11 | namespace Settings\Form\Filter; |
@@ -102,7 +102,7 @@ |
||
102 | 102 | $fieldset->setLabel(ucfirst($label)); |
103 | 103 | } |
104 | 104 | $fieldset->setName($name) |
105 | - ->setObject($child); |
|
105 | + ->setObject($child); |
|
106 | 106 | |
107 | 107 | |
108 | 108 | $this->add($fieldset); |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * YAWIK |
|
4 | - * |
|
5 | - * @filesource |
|
6 | - * @license MIT |
|
7 | - * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | - */ |
|
3 | + * YAWIK |
|
4 | + * |
|
5 | + * @filesource |
|
6 | + * @license MIT |
|
7 | + * @copyright 2013-2015 Cross Solution <http://cross-solution.de> |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** */ |
11 | 11 | namespace Settings\Form\View\Helper; |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | $headscript->appendFile($basepath('Settings/js/forms.decfs.js')); |
38 | 38 | |
39 | 39 | return '<ul class="disable-elements-list" id="' . $element->getAttribute('id') . '-list"' . '>' |
40 | - . $this->renderCheckboxes($element->getCheckboxes()) |
|
41 | - . '</ul>'; |
|
40 | + . $this->renderCheckboxes($element->getCheckboxes()) |
|
41 | + . '</ul>'; |
|
42 | 42 | |
43 | 43 | } |
44 | 44 |