@@ -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 |
@@ -25,8 +25,8 @@ |
||
25 | 25 | */ |
26 | 26 | class Form extends ZendForm implements |
27 | 27 | DescriptionAwareFormInterface, |
28 | - DisableElementsCapableInterface, |
|
29 | - FormParentInterface |
|
28 | + DisableElementsCapableInterface, |
|
29 | + FormParentInterface |
|
30 | 30 | { |
31 | 31 | use EventManagerAwareTrait, HydratorStrategyAwareTrait; |
32 | 32 |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | { |
29 | 29 | |
30 | 30 | /** |
31 | - * @var string |
|
32 | - */ |
|
31 | + * @var string |
|
32 | + */ |
|
33 | 33 | protected $partial = 'partial/language-switcher'; |
34 | 34 | |
35 | 35 | /** |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | { |
42 | 42 | |
43 | 43 | $options = array_merge([ |
44 | - 'partial' => $this->partial, |
|
45 | - ], $options); |
|
44 | + 'partial' => $this->partial, |
|
45 | + ], $options); |
|
46 | 46 | |
47 | 47 | $view = $this->view; |
48 | 48 | $partial = $options['partial']; |
@@ -52,7 +52,6 @@ discard block |
||
52 | 52 | * @method warning() |
53 | 53 | * @method success() |
54 | 54 | * @method danger() |
55 | - |
|
56 | 55 | * |
57 | 56 | *@author Mathias Gelhausen <[email protected]> |
58 | 57 | */ |
@@ -149,7 +148,7 @@ discard block |
||
149 | 148 | ) { |
150 | 149 | $class .= ' alert-dismissable'; |
151 | 150 | $content = '<button type="button" class="close" data-dismiss="alert">×</button>' |
152 | - . '<span class="notification-content">' . $content . '</span>'; |
|
151 | + . '<span class="notification-content">' . $content . '</span>'; |
|
153 | 152 | } |
154 | 153 | |
155 | 154 | $target = array_key_exists('target', $options)?' target="' . $options['target'] . '"':''; |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | class StringListener implements ListenerAggregateInterface |
10 | 10 | { |
11 | - protected $listeners = array(); |
|
11 | + protected $listeners = array(); |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Attach to an event manager |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * |
32 | 32 | * @param EventManagerInterface $events |
33 | 33 | * @param integer $priority |
34 | - */ |
|
34 | + */ |
|
35 | 35 | public function attach(EventManagerInterface $events, $priority = 1) |
36 | 36 | { |
37 | 37 | $this->listeners[] = $events->attach(MvcEvent::EVENT_DISPATCH_ERROR, array($this, 'handleError'), $priority); |
@@ -47,7 +47,7 @@ |
||
47 | 47 | */ |
48 | 48 | protected $paginator; |
49 | 49 | |
50 | - /** |
|
50 | + /** |
|
51 | 51 | * @return string |
52 | 52 | */ |
53 | 53 | public function getPaginatorName() |
@@ -278,7 +278,7 @@ |
||
278 | 278 | /* @var \Core\Listener\DeferredListenerAggregate $aggregate */ |
279 | 279 | $aggregate = $services->get('Core/Listener/DeferredListenerAggregate'); |
280 | 280 | $aggregate->setListeners($lazyListeners) |
281 | - ->attach($eventManager); |
|
281 | + ->attach($eventManager); |
|
282 | 282 | } |
283 | 283 | } |
284 | 284 |
@@ -15,7 +15,6 @@ |
||
15 | 15 | |
16 | 16 | /** |
17 | 17 | * |
18 | - |
|
19 | 18 | */ |
20 | 19 | interface FileInterface extends |
21 | 20 | IdentifiableEntityInterface, |