@@ -12,7 +12,7 @@ |
||
12 | 12 | |
13 | 13 | use Cv\Controller\ViewController; |
14 | 14 | use Interop\Container\ContainerInterface; |
15 | -use Zend\ServiceManager\Factory\FactoryInterface;; |
|
15 | +use Zend\ServiceManager\Factory\FactoryInterface; ; |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * ${CARET} |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | 'translation_file_patterns' => [ |
38 | 38 | [ |
39 | 39 | 'type' => 'gettext', |
40 | - 'base_dir' => __DIR__ . '/../language', |
|
40 | + 'base_dir' => __DIR__.'/../language', |
|
41 | 41 | 'pattern' => '%s.mo', |
42 | 42 | ], |
43 | 43 | ], |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | // Configuration of the controller service manager (Which loads controllers) |
88 | 88 | 'controllers' => [ |
89 | 89 | 'factories' => [ |
90 | - 'Settings\Controller\Index' => [\Settings\Controller\IndexController::class,'factory'] |
|
90 | + 'Settings\Controller\Index' => [\Settings\Controller\IndexController::class, 'factory'] |
|
91 | 91 | ], |
92 | 92 | ], |
93 | 93 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | // Where to look for view templates not mapped above |
101 | 101 | 'template_path_stack' => [ |
102 | - __DIR__ . '/../view', |
|
102 | + __DIR__.'/../view', |
|
103 | 103 | ], |
104 | 104 | ], |
105 | 105 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | 'factories' => [ |
116 | 116 | 'Settings' => '\Settings\Settings\SettingsFactory', |
117 | 117 | 'Settings/EntityResolver' => '\Settings\Repository\SettingsEntityResolverFactory', |
118 | - 'Settings/InjectEntityResolverListener' => [\Settings\Repository\Event\InjectSettingsEntityResolverListener::class,'factory'], |
|
118 | + 'Settings/InjectEntityResolverListener' => [\Settings\Repository\Event\InjectSettingsEntityResolverListener::class, 'factory'], |
|
119 | 119 | ], |
120 | 120 | 'initializers' => [], |
121 | 121 | 'shared' => [], |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | |
129 | 129 | 'form_elements' => [ |
130 | 130 | 'factories' => [ |
131 | - 'Settings/Form' => [\Settings\Form\AbstractSettingsForm::class,'factory'], |
|
132 | - 'Settings/DisableElementsCapableFormSettingsFieldset' => [\Settings\Form\DisableElementsCapableFormSettingsFieldset::class,'factory'], |
|
131 | + 'Settings/Form' => [\Settings\Form\AbstractSettingsForm::class, 'factory'], |
|
132 | + 'Settings/DisableElementsCapableFormSettingsFieldset' => [\Settings\Form\DisableElementsCapableFormSettingsFieldset::class, 'factory'], |
|
133 | 133 | 'Settings/Fieldset' => \Settings\Form\Factory\SettingsFieldsetFactory::class, |
134 | 134 | ], |
135 | 135 | 'aliases' => [ |
@@ -19,7 +19,7 @@ |
||
19 | 19 | |
20 | 20 | class SettingsEntityResolverFactory implements FactoryInterface |
21 | 21 | { |
22 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
22 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
23 | 23 | { |
24 | 24 | $moduleManager = $container->get('ModuleManager'); |
25 | 25 | $config = $container->get('Config'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | class SettingsFactory implements FactoryInterface |
13 | 13 | { |
14 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
14 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
15 | 15 | { |
16 | 16 | $settings = new Settings(); |
17 | 17 | $settings->setServiceLocator($container); |
@@ -87,7 +87,7 @@ |
||
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | - public function find( $user, $lockMode = LockMode::NONE, $lockVersion = null ) { |
|
90 | + public function find($user, $lockMode = LockMode::NONE, $lockVersion = null) { |
|
91 | 91 | return $this->getSettingsByUser($user); |
92 | 92 | } |
93 | 93 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | class SettingsFactory implements FactoryInterface |
17 | 17 | { |
18 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
18 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
19 | 19 | { |
20 | 20 | $auth = $container->get('AuthenticationService'); |
21 | 21 | $user = $auth->getUser(); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $mvcEvent->setParam('__settings_active_module', $moduleName); |
87 | 87 | |
88 | 88 | $formManager = $this->formManager; |
89 | - $formName = $moduleName . '/SettingsForm'; |
|
89 | + $formName = $moduleName.'/SettingsForm'; |
|
90 | 90 | if (!$formManager->has($formName)) { |
91 | 91 | $formName = "Settings/Form"; |
92 | 92 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $valid = $form->isValid(); |
110 | 110 | $partial = $this->viewHelper->get('partial'); |
111 | 111 | $text = $valid |
112 | - ? /*@translate*/'Changes successfully saved' |
|
112 | + ? /*@translate*/'Changes successfully saved' |
|
113 | 113 | : /*@translate*/'Changes could not be saved'; |
114 | 114 | $this->notification()->success($translator->translate($text)); |
115 | 115 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | $this, |
120 | 120 | array('settings' => $settings) |
121 | 121 | ); |
122 | - $this->getEventManager()->trigger($event->getName(),$event); |
|
122 | + $this->getEventManager()->trigger($event->getName(), $event); |
|
123 | 123 | $vars['valid'] = true; |
124 | 124 | } else { |
125 | 125 | $vars['error'] = $form->getMessages(); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | $headscript->appendFile($basepath('Settings/js/forms.decfs.js')); |
38 | 38 | |
39 | - return '<ul class="disable-elements-list" id="' . $element->getAttribute('id') . '-list"' . '>' |
|
39 | + return '<ul class="disable-elements-list" id="'.$element->getAttribute('id').'-list"'.'>' |
|
40 | 40 | . $this->renderCheckboxes($element->getCheckboxes()) |
41 | 41 | . '</ul>'; |
42 | 42 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | unset($boxes['__all__']); |
61 | 61 | } |
62 | 62 | |
63 | - $markup .= '<ul class="disable-elements">' . $this->renderCheckboxes($boxes) . '</ul>'; |
|
63 | + $markup .= '<ul class="disable-elements">'.$this->renderCheckboxes($boxes).'</ul>'; |
|
64 | 64 | } else { |
65 | 65 | $markup .= $this->renderCheckbox($boxes); |
66 | 66 | } |
@@ -82,12 +82,12 @@ discard block |
||
82 | 82 | /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
83 | 83 | $renderer = $this->getView(); |
84 | 84 | if (null !== $class) { |
85 | - $box->setAttribute('class', $box->getAttribute('class') . ' ' . $class); |
|
85 | + $box->setAttribute('class', $box->getAttribute('class').' '.$class); |
|
86 | 86 | } |
87 | 87 | $markup = $renderer->formCheckBox($box); |
88 | 88 | if ($desc = $box->getOption('description')) { |
89 | 89 | $desc = $this->getTranslator()->translate($desc, $this->getTranslatorTextDomain()); |
90 | - $markup .= '<div class="alert alert-info"><p>' . $desc . '</p></div>'; |
|
90 | + $markup .= '<div class="alert alert-info"><p>'.$desc.'</p></div>'; |
|
91 | 91 | } |
92 | 92 | return $markup; |
93 | 93 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | } |
72 | 72 | $this->setAttribute('method', 'post'); |
73 | 73 | $object = $this->getObject(); |
74 | - $fieldsetName = $object->getModuleName() . '/SettingsFieldset'; |
|
74 | + $fieldsetName = $object->getModuleName().'/SettingsFieldset'; |
|
75 | 75 | |
76 | 76 | if ($this->formManager->has($fieldsetName)) { |
77 | 77 | $fieldset = $this->formManager->get($fieldsetName); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $this->add([ |
90 | 90 | 'type' => 'DefaultButtonsFieldset' |
91 | 91 | ]); |
92 | - $this->isBuild=true; |
|
92 | + $this->isBuild = true; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | |
108 | 108 | public function setName($name) |
109 | 109 | { |
110 | - parent::setName(strtolower($name) . '-settings'); |
|
110 | + parent::setName(strtolower($name).'-settings'); |
|
111 | 111 | $urlHelper = $this->viewHelper->get('url'); |
112 | 112 | |
113 | 113 | $url = $urlHelper('lang/settings', array('module' => $name), true); |