@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | $routeMatch->setParam('action', $p); |
43 | 43 | $response = $this->getResponse(); |
44 | 44 | $response->getHeaders() |
45 | - ->addHeaderLine('Content-Type', 'application/json') |
|
46 | - ->addHeaderLine('Content-Encoding', 'utf8'); |
|
45 | + ->addHeaderLine('Content-Type', 'application/json') |
|
46 | + ->addHeaderLine('Content-Encoding', 'utf8'); |
|
47 | 47 | } |
48 | 48 | } |
49 | 49 | |
@@ -60,10 +60,10 @@ discard block |
||
60 | 60 | |
61 | 61 | return $this->createViewModel( |
62 | 62 | array( |
63 | - 'prerequisites' => $prereqs, |
|
64 | - 'form' => $form, |
|
65 | - 'lang' => $this->params('lang'), |
|
66 | - ) |
|
63 | + 'prerequisites' => $prereqs, |
|
64 | + 'form' => $form, |
|
65 | + 'lang' => $this->params('lang'), |
|
66 | + ) |
|
67 | 67 | ); |
68 | 68 | } |
69 | 69 | |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | if (!$form->isValid()) { |
96 | 96 | return $this->createJsonResponse( |
97 | 97 | array( |
98 | - 'ok' => false, |
|
99 | - 'errors' => $form->getMessages(), |
|
100 | - ) |
|
98 | + 'ok' => false, |
|
99 | + 'errors' => $form->getMessages(), |
|
100 | + ) |
|
101 | 101 | ); |
102 | 102 | } |
103 | 103 |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | protected $workflow = [ |
82 | 82 | |
83 | - 'recruiter', |
|
83 | + 'recruiter', |
|
84 | 84 | ]; |
85 | 85 | |
86 | 86 | /** |
@@ -218,13 +218,13 @@ discard block |
||
218 | 218 | } |
219 | 219 | |
220 | 220 | /** |
221 | - * @return boolean |
|
222 | - * @since 0.27 |
|
223 | - */ |
|
224 | - public function getAllowSubsequentAttachmentUpload() |
|
225 | - { |
|
226 | - return $this->allowSubsequentAttachmentUpload; |
|
227 | - } |
|
221 | + * @return boolean |
|
222 | + * @since 0.27 |
|
223 | + */ |
|
224 | + public function getAllowSubsequentAttachmentUpload() |
|
225 | + { |
|
226 | + return $this->allowSubsequentAttachmentUpload; |
|
227 | + } |
|
228 | 228 | |
229 | 229 | /** |
230 | 230 | * @param boolean $allowSubsequentAttachmentUpload |
@@ -297,9 +297,9 @@ |
||
297 | 297 | } |
298 | 298 | |
299 | 299 | /** |
300 | - * @see \Core\Entity\FileInterface::getUri() |
|
301 | - * @since 0.27 |
|
302 | - */ |
|
303 | - public function getUri() |
|
304 | - {} |
|
300 | + * @see \Core\Entity\FileInterface::getUri() |
|
301 | + * @since 0.27 |
|
302 | + */ |
|
303 | + public function getUri() |
|
304 | + {} |
|
305 | 305 | } |
306 | 306 | \ No newline at end of file |
@@ -91,7 +91,7 @@ |
||
91 | 91 | * and which are not in draft mode |
92 | 92 | */ |
93 | 93 | $queryBuilder->field('permissions.view')->equals($userID) |
94 | - ->field('isDraft')->equals(false); |
|
94 | + ->field('isDraft')->equals(false); |
|
95 | 95 | |
96 | 96 | if (!isset($value['sort'])) { |
97 | 97 | $value['sort'] = '-date'; |
@@ -123,10 +123,10 @@ |
||
123 | 123 | * @param $options |
124 | 124 | */ |
125 | 125 | public function setOptions($options){ |
126 | - foreach($options as $key=>$val) { |
|
126 | + foreach($options as $key=>$val) { |
|
127 | 127 | if (array_key_exists($this->options,$key)) { |
128 | 128 | $this->options[$key]=$val; |
129 | 129 | } |
130 | - } |
|
130 | + } |
|
131 | 131 | } |
132 | 132 | } |
@@ -102,10 +102,10 @@ |
||
102 | 102 | } |
103 | 103 | }else{ |
104 | 104 | $result = sprintf('<a href="%s" rel="%s" %s>%s</a>', |
105 | - $url, |
|
106 | - $options['rel'], |
|
107 | - $options['target']?"target=" . $options['target']:"", |
|
108 | - strip_tags($jobEntity->getTitle())); |
|
105 | + $url, |
|
106 | + $options['rel'], |
|
107 | + $options['target']?"target=" . $options['target']:"", |
|
108 | + strip_tags($jobEntity->getTitle())); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | return $result; |
@@ -90,24 +90,24 @@ |
||
90 | 90 | $tabId = $containerId . '-' . strtolower($tabElement->getName()); |
91 | 91 | $tabsNav .= '<li><a data-toggle="tab" href="#' . $tabId . '">' . $translate($tabElement->getLabel()) . '</a></li>'; |
92 | 92 | $tabsContent .= '<div class="tab-pane" id="' . $tabId . '">' |
93 | - . $formContainer($tabElement, $layout, $parameter) |
|
94 | - . '</div>'; |
|
93 | + . $formContainer($tabElement, $layout, $parameter) |
|
94 | + . '</div>'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | $content .= '<style type="text/css">.tab-content > div > div:first-child { margin-top: 10px; }</style><div class="wizard-container" id="' . $containerId . '">' |
98 | - . '<ul>' . $tabsNav . '</ul>' |
|
99 | - . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
98 | + . '<ul>' . $tabsNav . '</ul>' |
|
99 | + . '<div class="tab-content">' . $tabsContent . '</div>'; |
|
100 | 100 | if ($containerParams['pager']) { |
101 | 101 | $content .='<ul class="pager wizard">' |
102 | - . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | - . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | - . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
105 | - . (false !== $containerParams['finish_label'] |
|
102 | + . '<li class="previous"><a href="javascript:;">← ' . $translate('previous') . '</a></li>' |
|
103 | + . '<li class="next"><a href="javascript:;">' . $translate('Next') . ' →</a></li>' |
|
104 | + . '<li class="finish' . ($containerParams['finish_enabled'] ? '' : ' disabled') . '">' |
|
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 |
@@ -81,7 +81,7 @@ |
||
81 | 81 | |
82 | 82 | $adapter->setParams($params); |
83 | 83 | $paginator->setCurrentPageNumber($params->get('page', 1)) |
84 | - ->setItemCountPerPage($params->get('count', 10)); |
|
84 | + ->setItemCountPerPage($params->get('count', 10)); |
|
85 | 85 | |
86 | 86 | return $paginator; |
87 | 87 | } |
@@ -1,6 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - |
|
4 | 3 | */ |
5 | 4 | |
6 | 5 | namespace Core\Form\View\Helper; |