@@ -25,8 +25,8 @@ |
||
25 | 25 | public function init() |
26 | 26 | { |
27 | 27 | $this->addTextElement( |
28 | - 'Search', |
|
29 | - /*@translate*/ 'search for position or company' |
|
28 | + 'Search', |
|
29 | + /*@translate*/ 'search for position or company' |
|
30 | 30 | ); |
31 | 31 | |
32 | 32 |
@@ -89,23 +89,23 @@ |
||
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 .= '<div class="wizard-container" id="' . $containerId . '">' |
97 | - . '<ul>' . $tabsNav . '</ul>' |
|
98 | - . '<div class="tab-content">' . $tabsContent . '</div>' |
|
99 | - . '<ul class="pager wizard">' |
|
100 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
101 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
102 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
103 | - . (false !== $containerParams['finish_label'] |
|
97 | + . '<ul>' . $tabsNav . '</ul>' |
|
98 | + . '<div class="tab-content">' . $tabsContent . '</div>' |
|
99 | + . '<ul class="pager wizard">' |
|
100 | + . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
101 | + . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
102 | + . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
103 | + . (false !== $containerParams['finish_label'] |
|
104 | 104 | ? '<a class="pull-right" href="' . $containerParams['finish_href'] . '">' |
105 | - . $translate($containerParams['finish_label']) . ' •</a>' |
|
105 | + . $translate($containerParams['finish_label']) . ' •</a>' |
|
106 | 106 | : '' |
107 | 107 | ) |
108 | - . '</li></div>'; |
|
108 | + . '</li></div>'; |
|
109 | 109 | |
110 | 110 | $content .= $container->renderPost($this->getView()); |
111 | 111 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $organizations = $organizationReference->getHiringOrganizations()->toArray(); |
42 | 42 | $organization = $organizationReference->getOrganization(); |
43 | 43 | if (!$organization->isDraft()) { |
44 | - array_unshift($organizations, $organization); |
|
44 | + array_unshift($organizations, $organization); |
|
45 | 45 | } |
46 | 46 | $select->setSelectableOrganizations($organizations, /* addEmptyOption */ |
47 | 47 | false |
@@ -53,10 +53,10 @@ |
||
53 | 53 | |
54 | 54 | if ($emailOrAddressOrList instanceOf UserInterface) { |
55 | 55 | parent::updateAddressList( |
56 | - $addressList, |
|
57 | - $emailOrAddressOrList->getInfo()->getEmail(), |
|
58 | - $emailOrAddressOrList->getInfo()->getDisplayName(false), |
|
59 | - $callingMethod |
|
56 | + $addressList, |
|
57 | + $emailOrAddressOrList->getInfo()->getEmail(), |
|
58 | + $emailOrAddressOrList->getInfo()->getDisplayName(false), |
|
59 | + $callingMethod |
|
60 | 60 | ); |
61 | 61 | return; |
62 | 62 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | } elseif (isset($this->config['templateHalf'])) { |
169 | 169 | $template = $this->config['templateHalf']; |
170 | 170 | } else { |
171 | - throw new \InvalidArgumentException('Not template provided for Mail.'); |
|
171 | + throw new \InvalidArgumentException('Not template provided for Mail.'); |
|
172 | 172 | } |
173 | 173 | return $template; |
174 | 174 | } |
@@ -181,19 +181,19 @@ discard block |
||
181 | 181 | $from = $this->config['from']; |
182 | 182 | } else { |
183 | 183 | $log->err('A from email address must be provided (Variable $from) in Template: ' . $template); |
184 | - throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: ' . $template); |
|
184 | + throw new \InvalidArgumentException('A from email address must be provided (Variable $from) in Template: ' . $template); |
|
185 | 185 | } |
186 | 186 | if (isset($this->config['fromName'])) { |
187 | 187 | $fromName = $this->config['fromName']; |
188 | 188 | } else { |
189 | 189 | $log->err('A from name must be provided (Variable $fromName) in Template: ' . $template); |
190 | - throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: ' . $template); |
|
190 | + throw new \InvalidArgumentException('A from name must be provided (Variable $fromName) in Template: ' . $template); |
|
191 | 191 | } |
192 | 192 | if (isset($this->config['subject'])) { |
193 | 193 | $subject = $this->config['subject']; |
194 | 194 | } else { |
195 | 195 | $log->err('A subject must be provided (Variable $subject) in Template: ' . $template); |
196 | - throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: ' . $template); |
|
196 | + throw new \InvalidArgumentException('A subject must be provided (Variable $subject) in Template: ' . $template); |
|
197 | 197 | } |
198 | 198 | $this->setFrom($from, $fromName); |
199 | 199 | $this->setSubject($subject); |
@@ -56,7 +56,7 @@ |
||
56 | 56 | */ |
57 | 57 | public function postDispatch(MvcEvent $e) |
58 | 58 | { |
59 | - // $view = $this->serviceLocator->get('view'); |
|
59 | + // $view = $this->serviceLocator->get('view'); |
|
60 | 60 | |
61 | 61 | } |
62 | 62 |
@@ -56,6 +56,6 @@ |
||
56 | 56 | $form = new static(); |
57 | 57 | $form->forms = $forms; |
58 | 58 | |
59 | - return $form; |
|
59 | + return $form; |
|
60 | 60 | } |
61 | 61 | } |
@@ -128,6 +128,6 @@ |
||
128 | 128 | |
129 | 129 | $pointer = $this->pointer + 1; |
130 | 130 | |
131 | - return isset($this->ids[$pointer]) ? $this->ids[$pointer] : null; |
|
131 | + return isset($this->ids[$pointer]) ? $this->ids[$pointer] : null; |
|
132 | 132 | } |
133 | 133 | } |
@@ -55,8 +55,8 @@ |
||
55 | 55 | { |
56 | 56 | /* @var $options \Applications\Options\ModuleOptions */ |
57 | 57 | $form->get($this->fileName)->setViewHelper('FormImageUpload') |
58 | - ->setMaxSize($options->getContactImageMaxSize()) |
|
59 | - ->setAllowedTypes($options->getContactImageMimeType()) |
|
60 | - ->setForm($form); |
|
58 | + ->setMaxSize($options->getContactImageMaxSize()) |
|
59 | + ->setAllowedTypes($options->getContactImageMimeType()) |
|
60 | + ->setForm($form); |
|
61 | 61 | } |
62 | 62 | } |