@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $renderer->headscript()->appendFile($renderer->basepath('modules/Core/js/jquery.summary-form.js')); |
68 | 68 | |
69 | 69 | $label = $form->getLabel(); |
70 | - $labelContent = $label ? '<div class="sf-headline"><h3>' . $this->getView()->translate($label) . '</h3></div>' : ''; |
|
70 | + $labelContent = $label ? '<div class="sf-headline"><h3>'.$this->getView()->translate($label).'</h3></div>' : ''; |
|
71 | 71 | $formContent = $this->renderForm($form, $layout, $parameter); |
72 | 72 | $summaryContent = $this->renderSummary($form); |
73 | 73 | |
@@ -132,8 +132,8 @@ discard block |
||
132 | 132 | public function renderForm(SummaryFormInterface $form, $layout = Form::LAYOUT_HORIZONTAL, $parameter = array()) |
133 | 133 | { |
134 | 134 | /* @var $form SummaryFormInterface|\Core\Form\SummaryForm */ |
135 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
136 | - $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
135 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
136 | + $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
137 | 137 | $fieldset = $form->getBaseFieldset(); |
138 | 138 | $resetPartial = false; |
139 | 139 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | $form->prepare(); |
168 | 168 | $baseFieldset = $form->getBaseFieldset(); |
169 | 169 | if (!isset($baseFieldset)) { |
170 | - throw new \InvalidArgumentException('For the Form ' . get_class($form) . ' there is no Basefieldset'); |
|
170 | + throw new \InvalidArgumentException('For the Form '.get_class($form).' there is no Basefieldset'); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | $dataAttributesMarkup = ''; |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
181 | - $markup = '<div class="panel panel-default" style="min-height: 100px;"' . $dataAttributesMarkup . '> |
|
181 | + $markup = '<div class="panel panel-default" style="min-height: 100px;"'.$dataAttributesMarkup.'> |
|
182 | 182 | <div class="panel-body"><div class="sf-controls">%s</div>%s</div></div>'; |
183 | 183 | |
184 | 184 | $view = $this->getView(); |
@@ -190,9 +190,9 @@ discard block |
||
190 | 190 | . '</button>'; |
191 | 191 | |
192 | 192 | if (($controlButtons = $form->getOption('control_buttons')) !== null) { |
193 | - $buttonMarkup .= PHP_EOL . implode(PHP_EOL, array_map(function (array $buttonSpec) use ($view) { |
|
194 | - return '<button type="button" class="btn btn-default btn-xs' . (isset($buttonSpec['class']) ? ' ' . $buttonSpec['class'] : '') . '">' |
|
195 | - . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-' . $buttonSpec['icon'] . '"></span> ' : '') |
|
193 | + $buttonMarkup .= PHP_EOL.implode(PHP_EOL, array_map(function(array $buttonSpec) use ($view) { |
|
194 | + return '<button type="button" class="btn btn-default btn-xs'.(isset($buttonSpec['class']) ? ' '.$buttonSpec['class'] : '').'">' |
|
195 | + . (isset($buttonSpec['icon']) ? '<span class="yk-icon yk-icon-'.$buttonSpec['icon'].'"></span> ' : '') |
|
196 | 196 | . $view->translate($buttonSpec['label']) |
197 | 197 | . '</button>'; |
198 | 198 | }, $controlButtons)); |
@@ -232,10 +232,10 @@ discard block |
||
232 | 232 | } |
233 | 233 | |
234 | 234 | if ($element instanceof ViewPartialProviderInterface) { |
235 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
235 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
236 | 236 | $origPartial = $element->getViewPartial(); |
237 | 237 | $partial = "$origPartial.view"; |
238 | - $partialParams = array( |
|
238 | + $partialParams = array( |
|
239 | 239 | 'element' => $element |
240 | 240 | ); |
241 | 241 | if (!$renderer->resolver($partial)) { |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | if ($element instanceof FieldsetInterface) { |
253 | 253 | if (!$element instanceof FormInterface && $label) { |
254 | - $markup .= '<h4>' . $label . '</h4>'; |
|
254 | + $markup .= '<h4>'.$label.'</h4>'; |
|
255 | 255 | } |
256 | 256 | foreach ($element as $el) { |
257 | 257 | $markup .= $this->renderSummaryElement($el); |
@@ -283,11 +283,11 @@ discard block |
||
283 | 283 | } |
284 | 284 | |
285 | 285 | $optGroupLabel = isset($optVal['label']) ? $translator->translate($optVal['label']) : $optKey; |
286 | - $multiOptions[] = $optGroupLabel . ' | ' . $translator->translate($optVal['options'][$optionKey]); |
|
286 | + $multiOptions[] = $optGroupLabel.' | '.$translator->translate($optVal['options'][$optionKey]); |
|
287 | 287 | } |
288 | 288 | } |
289 | 289 | |
290 | - $elementValue = '<ul><li>' . join('</li><li>', $multiOptions) . '</li></ul>'; |
|
290 | + $elementValue = '<ul><li>'.join('</li><li>', $multiOptions).'</li></ul>'; |
|
291 | 291 | } else { |
292 | 292 | $elementValue = $translator->translate($options[$elementValue]); |
293 | 293 | } |
@@ -301,10 +301,10 @@ discard block |
||
301 | 301 | $markup .= '<div class="row">'; |
302 | 302 | $col = 12; |
303 | 303 | if ($label) { |
304 | - $markup .= '<div class="col-md-3 yk-label"><label>' . $label . '</label></div>'; |
|
304 | + $markup .= '<div class="col-md-3 yk-label"><label>'.$label.'</label></div>'; |
|
305 | 305 | $col = 9; |
306 | 306 | } |
307 | - $markup .= '<div class="col-md-' . $col . '">' . $elementValue . '</div>' |
|
307 | + $markup .= '<div class="col-md-'.$col.'">'.$elementValue.'</div>' |
|
308 | 308 | . '</div>'; |
309 | 309 | return $markup; |
310 | 310 | } |
@@ -89,25 +89,25 @@ |
||
89 | 89 | $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
90 | 90 | $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
91 | 91 | $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
92 | - . $formContainer($tabElement, $layout, $parameter) |
|
93 | - . '</div>'; |
|
92 | + . $formContainer($tabElement, $layout, $parameter) |
|
93 | + . '</div>'; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
97 | - . '<ul>' . $tabsNav . '</ul>' |
|
98 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
97 | + . '<ul>' . $tabsNav . '</ul>' |
|
98 | + . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
99 | 99 | if ($containerParams['pager']) { |
100 | 100 | $content .='<ul class="pager wizard">' |
101 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
102 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
103 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
104 | - . ( |
|
105 | - false !== $containerParams['finish_label'] |
|
101 | + . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
102 | + . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
103 | + . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
104 | + . ( |
|
105 | + false !== $containerParams['finish_label'] |
|
106 | 106 | ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
107 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
107 | + . $translate($containerParams['finish_label']) . ' •</a>' |
|
108 | 108 | : '' |
109 | 109 | ) |
110 | - . '</li></ul>'; |
|
110 | + . '</li></ul>'; |
|
111 | 111 | } |
112 | 112 | $content .= '</div>'; |
113 | 113 |
@@ -82,29 +82,29 @@ |
||
82 | 82 | |
83 | 83 | $containerId = $container->getAttribute('id'); |
84 | 84 | if (!$containerId) { |
85 | - $containerId = 'wizardcontainer-' . strtolower(str_replace('\\', '-', get_class($container))); |
|
85 | + $containerId = 'wizardcontainer-'.strtolower(str_replace('\\', '-', get_class($container))); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | foreach ($container as $tabElement) { |
89 | - $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
|
90 | - $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
|
91 | - $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
|
89 | + $tabId = $containerId.'-'.strtolower($tabElement->getName()); |
|
90 | + $tabsNav .= '<li><a data-toggle="tab" href="#'.$tabId.'">'.$translate($tabElement->getLabel()).'</a></li>'; |
|
91 | + $tabsContent .= '<div class="tab-pane" id="'.$tabId.'">' |
|
92 | 92 | . $formContainer($tabElement, $layout, $parameter) |
93 | 93 | . '</div>'; |
94 | 94 | } |
95 | 95 | |
96 | - $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
|
97 | - . '<ul>' . $tabsNav . '</ul>' |
|
98 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
96 | + $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="'.$containerId.'">' |
|
97 | + . '<ul>'.$tabsNav.'</ul>' |
|
98 | + . '<div class="tab-content">'.$tabsContent.'</div>'; |
|
99 | 99 | if ($containerParams['pager']) { |
100 | - $content .='<ul class="pager wizard">' |
|
101 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
102 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
103 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
100 | + $content .= '<ul class="pager wizard">' |
|
101 | + . '<li class="previous"><a href="javascript:;">← '.$translate('previous').'</a></li>' |
|
102 | + . '<li class="next"><a href="javascript:;">'.$translate('Next').' →</a></li>' |
|
103 | + . '<li class="finish'.($containerParams['finish_enabled'] ? '' : ' disabled').'">' |
|
104 | 104 | . ( |
105 | 105 | false !== $containerParams['finish_label'] |
106 | - ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
|
107 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
106 | + ? '<a class="pull-right" href="'.$containerParams['finish_href'].'">' |
|
107 | + . $translate($containerParams['finish_label']).' •</a>' |
|
108 | 108 | : '' |
109 | 109 | ) |
110 | 110 | . '</li></ul>'; |
@@ -49,11 +49,11 @@ |
||
49 | 49 | $properties = $refl->getProperties(); |
50 | 50 | |
51 | 51 | foreach ($properties as $property) { |
52 | - $name = $property->getName(); |
|
52 | + $name = $property->getName(); |
|
53 | 53 | if ('_' == $name{0}) { |
54 | 54 | continue; |
55 | 55 | } |
56 | - $value = $rating->{'get' . $name}(); |
|
56 | + $value = $rating->{'get'.$name}(); |
|
57 | 57 | $input = array( |
58 | 58 | 'type' => 'Core/Rating', |
59 | 59 | 'name' => $name, |
@@ -103,10 +103,10 @@ |
||
103 | 103 | */ |
104 | 104 | public function setFormId($formId) |
105 | 105 | { |
106 | - $this->formId = $formId . '-'; |
|
106 | + $this->formId = $formId.'-'; |
|
107 | 107 | |
108 | 108 | foreach ($this as $button) { |
109 | - $button->setAttribute('id', $this->formId . $button->getAttribute('id')); |
|
109 | + $button->setAttribute('id', $this->formId.$button->getAttribute('id')); |
|
110 | 110 | } |
111 | 111 | return $this; |
112 | 112 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | ) |
47 | 47 | ); |
48 | 48 | |
49 | - $timezones=array_merge( |
|
49 | + $timezones = array_merge( |
|
50 | 50 | \DateTimeZone::listIdentifiers(\DateTimeZone::AFRICA), |
51 | 51 | \DateTimeZone::listIdentifiers(\DateTimeZone::AMERICA), |
52 | 52 | \DateTimeZone::listIdentifiers(\DateTimeZone::ASIA), |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public function init() |
37 | 37 | { |
38 | 38 | if (empty($this->baseFieldset)) { |
39 | - throw new \InvalidArgumentException('For the Form ' . get_class($this) . ' there is no Basefieldset'); |
|
39 | + throw new \InvalidArgumentException('For the Form '.get_class($this).' there is no Basefieldset'); |
|
40 | 40 | } |
41 | 41 | $this->addBaseFieldset(); |
42 | 42 | $this->addButtonsFieldset(); |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | // assets-install info |
62 | 62 | 'assets-install [--symlink] [--relative] <target>' => 'Install assets in the given target', |
63 | 63 | 'The assets-install command will install assets in the given <target> directory. If no option given this command will copy assets into the target.', |
64 | - ['--symlink','This option will install assets using absolute symlink directory'], |
|
65 | - ['--relative','This option will install assets using relative symlink'], |
|
64 | + ['--symlink', 'This option will install assets using absolute symlink directory'], |
|
65 | + ['--relative', 'This option will install assets using relative symlink'], |
|
66 | 66 | "" |
67 | 67 | ]; |
68 | 68 | |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | 'subsplit [--heads] [--tags] [--skip-update] [--dry-run] [--verbose|v]' => 'Subsplit development repository', |
73 | 73 | 'The subsplit command will automatically subsplit all changes in the develop into github yawik/* repository'.PHP_EOL |
74 | 74 | .'This command will available only in the Yawik main development repository', |
75 | - ['--heads','If defined then will subsplit that branch.'], |
|
76 | - ['--tags','Subsplit given tags only'], |
|
77 | - ['--skip-update','Directly subsplit repository without pull remote branch'], |
|
78 | - ['--dry-run','Only show the list of git command that will be executed.'], |
|
75 | + ['--heads', 'If defined then will subsplit that branch.'], |
|
76 | + ['--tags', 'Subsplit given tags only'], |
|
77 | + ['--skip-update', 'Directly subsplit repository without pull remote branch'], |
|
78 | + ['--dry-run', 'Only show the list of git command that will be executed.'], |
|
79 | 79 | ['--verbose | -v', 'Show debug output.'], |
80 | 80 | ]); |
81 | 81 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | $eventManager->attach( |
145 | 145 | MvcEvent::EVENT_DISPATCH_ERROR, |
146 | - function ($event) { |
|
146 | + function($event) { |
|
147 | 147 | if ($event instanceof MvcEvent) { |
148 | 148 | $application = $event->getApplication(); |
149 | 149 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | ); |
160 | 160 | $eventManager->attach( |
161 | 161 | MvcEvent::EVENT_DISPATCH, |
162 | - function ($event) use ($eventManager) { |
|
162 | + function($event) use ($eventManager) { |
|
163 | 163 | $eventManager->trigger('postDispatch', $event); |
164 | 164 | }, |
165 | 165 | -150 |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function getConfig() |
177 | 177 | { |
178 | - $config = include __DIR__ . '/../config/module.config.php'; |
|
178 | + $config = include __DIR__.'/../config/module.config.php'; |
|
179 | 179 | return $config; |
180 | 180 | } |
181 | 181 | |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | public function init(ModuleManager $manager) |
186 | 186 | { |
187 | 187 | $events = $manager->getEventManager(); |
188 | - $events->attach(ModuleEvent::EVENT_MERGE_CONFIG, [$this,'onMergeConfig']); |
|
188 | + $events->attach(ModuleEvent::EVENT_MERGE_CONFIG, [$this, 'onMergeConfig']); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
@@ -42,7 +42,7 @@ |
||
42 | 42 | */ |
43 | 43 | public function __invoke() |
44 | 44 | { |
45 | - $SocialNetworksEnabled=[]; |
|
45 | + $SocialNetworksEnabled = []; |
|
46 | 46 | foreach ($this->config['hybridauth'] as $key => $val) { |
47 | 47 | if ($val['enabled'] and in_array(strtolower($key), $this->options->getEnableLogins())) { |
48 | 48 | $SocialNetworksEnabled[strtolower($key)] = $key; |
@@ -67,12 +67,12 @@ |
||
67 | 67 | |
68 | 68 | $output = '<div class="br-widget br-readonly ' |
69 | 69 | . ('compact' == $mode ? ' br-compact' : '') |
70 | - . '" title="' . $this->getView()->translate(self::$ratingValueMap[$rating]) . '">'; |
|
71 | - for ($i=1; $i<6; $i++) { |
|
70 | + . '" title="'.$this->getView()->translate(self::$ratingValueMap[$rating]).'">'; |
|
71 | + for ($i = 1; $i < 6; $i++) { |
|
72 | 72 | $class = $i <= $rating ? 'br-selected' : ''; |
73 | 73 | $class .= $i == $rating ? ' br-current' : ''; |
74 | 74 | |
75 | - $output .= '<a class="' . $class . '"></a>'; |
|
75 | + $output .= '<a class="'.$class.'"></a>'; |
|
76 | 76 | } |
77 | 77 | $output .= '</div>'; |
78 | 78 |