@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | if ($headline) { |
37 | - $headline = '<h6>' . $translator->translate($headline, $textDomain) . '</h6>'; |
|
37 | + $headline = '<h6>'.$translator->translate($headline, $textDomain).'</h6>'; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | $markup = '<div class="checkbox"><label for="%s">%s %s</label></div>'; |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $label |
47 | 47 | ); |
48 | 48 | |
49 | - return $headline . $markup; |
|
49 | + return $headline.$markup; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -48,8 +48,8 @@ |
||
48 | 48 | } |
49 | 49 | $linktext = $translator->translate($linktext); |
50 | 50 | $link = '<a data-toggle="modal" href="' . $href . '" ' |
51 | - . 'data-target="#modal-' . $element->getAttribute('id') . '">' |
|
52 | - . $linktext . '</a>'; |
|
51 | + . 'data-target="#modal-' . $element->getAttribute('id') . '">' |
|
52 | + . $linktext . '</a>'; |
|
53 | 53 | |
54 | 54 | $label = sprintf($label, $link); |
55 | 55 | } |
@@ -44,26 +44,26 @@ discard block |
||
44 | 44 | $href = $this->getView()->url($route, $params, true); |
45 | 45 | } else { |
46 | 46 | /*@todo add more options like providing url... */ |
47 | - $href=""; |
|
47 | + $href = ""; |
|
48 | 48 | } |
49 | 49 | $linktext = $translator->translate($linktext); |
50 | - $link = '<a data-toggle="modal" href="' . $href . '" ' |
|
51 | - . 'data-target="#modal-' . $element->getAttribute('id') . '">' |
|
52 | - . $linktext . '</a>'; |
|
50 | + $link = '<a data-toggle="modal" href="'.$href.'" ' |
|
51 | + . 'data-target="#modal-'.$element->getAttribute('id').'">' |
|
52 | + . $linktext.'</a>'; |
|
53 | 53 | |
54 | 54 | $label = sprintf($label, $link); |
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | 58 | if ($headline) { |
59 | - $headline = '<h6>' . $translator->translate($headline, $textDomain) . '</h6>'; |
|
59 | + $headline = '<h6>'.$translator->translate($headline, $textDomain).'</h6>'; |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | $markup = ' |
63 | 63 | <div class="checkbox"> |
64 | 64 | <label for="%s">%s %s</label> |
65 | 65 | </div> |
66 | - <div class="modal fade modal-scrollable" id="modal-' . $element->getAttribute('id') . '" tabindex="-1" role="dialog" aria-labelledby="label-search-user" aria-hidden="true"> |
|
66 | + <div class="modal fade modal-scrollable" id="modal-' . $element->getAttribute('id').'" tabindex="-1" role="dialog" aria-labelledby="label-search-user" aria-hidden="true"> |
|
67 | 67 | <div class="modal-dialog modal-lg"> |
68 | 68 | <div class="modal-content"> |
69 | 69 | </div> |
@@ -77,6 +77,6 @@ discard block |
||
77 | 77 | $label |
78 | 78 | ); |
79 | 79 | |
80 | - return $headline . $markup; |
|
80 | + return $headline.$markup; |
|
81 | 81 | } |
82 | 82 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | use Zend\Form\ElementInterface; |
16 | 16 | use Zend\Form\Exception; |
17 | 17 | |
18 | -class RequiredMarkInFormLabel extends FormLabel{ |
|
18 | +class RequiredMarkInFormLabel extends FormLabel { |
|
19 | 19 | public function __invoke(ElementInterface $element = null, $labelContent = null, $position = null) |
20 | 20 | { |
21 | 21 | // Set $required to a default of true | existing elements required-value |
@@ -28,6 +28,6 @@ discard block |
||
28 | 28 | ); |
29 | 29 | } |
30 | 30 | |
31 | - return $this->openTag($element) . $labelContent . $this->closeTag(); |
|
31 | + return $this->openTag($element).$labelContent.$this->closeTag(); |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 | \ No newline at end of file |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $renderer->headscript()->appendFile($renderer->basePath('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 | |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | public function renderForm(SummaryFormInterface $form, $layout = Form::LAYOUT_HORIZONTAL, $parameter = array()) |
132 | 132 | { |
133 | 133 | /* @var $form SummaryFormInterface|\Core\Form\SummaryForm */ |
134 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
135 | - $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
134 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
135 | + $formHelper = $renderer->plugin('form'); /* @var $formHelper \Core\Form\View\Helper\Form */ |
|
136 | 136 | $fieldset = $form->getBaseFieldset(); |
137 | 137 | $resetPartial = false; |
138 | 138 | |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | { |
166 | 166 | $baseFieldset = $form->getBaseFieldset(); |
167 | 167 | if (!isset($baseFieldset)) { |
168 | - throw new \InvalidArgumentException('For the Form ' . get_class($form) . ' there is no Basefieldset'); |
|
168 | + throw new \InvalidArgumentException('For the Form '.get_class($form).' there is no Basefieldset'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | $markup = '<div class="panel panel-default" style="min-height: 100px;"> |
@@ -212,10 +212,10 @@ discard block |
||
212 | 212 | } |
213 | 213 | |
214 | 214 | if ($element instanceof ViewPartialProviderInterface) { |
215 | - $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
215 | + $renderer = $this->getView(); /* @var $renderer \Zend\View\Renderer\PhpRenderer */ |
|
216 | 216 | $origPartial = $element->getViewPartial(); |
217 | 217 | $partial = "$origPartial.view"; |
218 | - $partialParams = array( |
|
218 | + $partialParams = array( |
|
219 | 219 | 'element' => $element |
220 | 220 | ); |
221 | 221 | if (!$renderer->resolver($partial)) { |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | if ($element instanceof FieldsetInterface) { |
233 | 233 | if (!$element instanceof FormInterface && $label) { |
234 | - $markup .= '<h4>' . $label . '</h4>'; |
|
234 | + $markup .= '<h4>'.$label.'</h4>'; |
|
235 | 235 | } |
236 | 236 | foreach ($element as $el) { |
237 | 237 | $markup .= $this->renderSummaryElement($el); |
@@ -265,9 +265,9 @@ discard block |
||
265 | 265 | |
266 | 266 | $elementValue = []; |
267 | 267 | foreach ($multiOptions as $optGroupLabel => $vals) { |
268 | - $elementValue[] = "<b>$optGroupLabel</b><br>" . join(', ', $vals); |
|
268 | + $elementValue[] = "<b>$optGroupLabel</b><br>".join(', ', $vals); |
|
269 | 269 | } |
270 | - $elementValue = join('<br>', $elementValue) . '<br>'; |
|
270 | + $elementValue = join('<br>', $elementValue).'<br>'; |
|
271 | 271 | |
272 | 272 | } else { |
273 | 273 | $elementValue = $translator->translate($options[$elementValue]); |
@@ -281,10 +281,10 @@ discard block |
||
281 | 281 | $markup .= '<div class="row">'; |
282 | 282 | $col = 12; |
283 | 283 | if ($label) { |
284 | - $markup .= '<div class="col-md-3 yk-label"><label>' . $label . '</label></div>'; |
|
284 | + $markup .= '<div class="col-md-3 yk-label"><label>'.$label.'</label></div>'; |
|
285 | 285 | $col = 9; |
286 | 286 | } |
287 | - $markup .= '<div class="col-md-' . $col . '">' . $elementValue . '</div>' |
|
287 | + $markup .= '<div class="col-md-'.$col.'">'.$elementValue.'</div>' |
|
288 | 288 | . '</div>'; |
289 | 289 | return $markup; |
290 | 290 | } |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | |
45 | 45 | // Does this element have errors ? |
46 | 46 | if (count($element->getMessages()) > 0 && !empty($inputErrorClass)) { |
47 | - $classAttributes = ($element->hasAttribute('class') ? $element->getAttribute('class') . ' ' : ''); |
|
48 | - $classAttributes = $classAttributes . $inputErrorClass; |
|
47 | + $classAttributes = ($element->hasAttribute('class') ? $element->getAttribute('class').' ' : ''); |
|
48 | + $classAttributes = $classAttributes.$inputErrorClass; |
|
49 | 49 | |
50 | 50 | $element->setAttribute('class', $classAttributes); |
51 | 51 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | } |
97 | 97 | |
98 | 98 | if ($label !== '' && !$element->hasAttribute('id')) { |
99 | - $label = '<span>' . $label . '</span>'; |
|
99 | + $label = '<span>'.$label.'</span>'; |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | // Button element is a special case, because label is always rendered inside it |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | |
107 | 107 | switch ($this->labelPosition) { |
108 | 108 | case self::LABEL_PREPEND: |
109 | - $markup = $labelOpen . $label . $elementString . $labelClose; |
|
109 | + $markup = $labelOpen.$label.$elementString.$labelClose; |
|
110 | 110 | break; |
111 | 111 | case self::LABEL_APPEND: |
112 | 112 | default: |
113 | - $markup = $labelOpen . $elementString . $label . $labelClose; |
|
113 | + $markup = $labelOpen.$elementString.$label.$labelClose; |
|
114 | 114 | break; |
115 | 115 | } |
116 | 116 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | } |
121 | 121 | } else { |
122 | 122 | if (!empty($this->renderErrors)) { |
123 | - $markup = $elementString . $elementErrors; |
|
123 | + $markup = $elementString.$elementErrors; |
|
124 | 124 | } else { |
125 | 125 | $markup = $elementString; |
126 | 126 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | if (null === $buttonContent) { |
28 | 28 | throw new Exception\DomainException( |
29 | 29 | sprintf( |
30 | - '%s expects either button content as the second argument, ' . |
|
30 | + '%s expects either button content as the second argument, '. |
|
31 | 31 | 'or that the element provided has a label value; neither found', |
32 | 32 | __METHOD__ |
33 | 33 | ) |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | |
46 | 46 | $escape = $this->getEscapeHtmlHelper(); |
47 | 47 | $translator = $this->getTranslator(); |
48 | - $buttonContent = '<div><div class="processing yk-hidden"><span class="fa-spin yk-icon-spinner yk-icon"></span> ' . $translator->translate('processing', $this->getTranslatorTextDomain()) . '</div><div class="default">' . $escape($buttonContent) . '</div></div>'; |
|
48 | + $buttonContent = '<div><div class="processing yk-hidden"><span class="fa-spin yk-icon-spinner yk-icon"></span> '.$translator->translate('processing', $this->getTranslatorTextDomain()).'</div><div class="default">'.$escape($buttonContent).'</div></div>'; |
|
49 | 49 | |
50 | - return $openTag . $buttonContent . $this->closeTag(); |
|
50 | + return $openTag.$buttonContent.$this->closeTag(); |
|
51 | 51 | } |
52 | 52 | } |
@@ -31,15 +31,15 @@ |
||
31 | 31 | |
32 | 32 | if ($file) { |
33 | 33 | if (0 === strpos($file->getType(), 'image/')) { |
34 | - $basepath = $this->getView()->plugin('basepath'); |
|
35 | - $preview = '<img src="' . $basepath($file->getUri()) . '" class="img-polaroid" />'; |
|
34 | + $basepath = $this->getView()->plugin('basepath'); |
|
35 | + $preview = '<img src="'.$basepath($file->getUri()).'" class="img-polaroid" />'; |
|
36 | 36 | } else { |
37 | - $preview = '<span>' . $file->getName() . '(' . $file->getPrettySize() . ')</span>'; |
|
37 | + $preview = '<span>'.$file->getName().'('.$file->getPrettySize().')</span>'; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | $notice = '<div class="iu-empty-notice" style="padding: 10px; color: lightgrey;"> |
41 | 41 | <div style="padding: 0px 20px 5px;"><span class="yk-icon fa-file-image-o fa-5x"></span></div> |
42 | - <small>' . $translator->translate('Click here to add an image or use drag and drop.') . '</small> |
|
42 | + <small>' . $translator->translate('Click here to add an image or use drag and drop.').'</small> |
|
43 | 43 | |
44 | 44 | </div>'; |
45 | 45 |
@@ -36,12 +36,12 @@ |
||
36 | 36 | $formContent = ''; |
37 | 37 | foreach ($form as $element) { |
38 | 38 | if ($element instanceof FieldsetInterface) { |
39 | - $formContent.= $this->getView()->formCollection($element); |
|
39 | + $formContent .= $this->getView()->formCollection($element); |
|
40 | 40 | } else { |
41 | - $formContent.= $this->getView()->formRowSimple($element); |
|
41 | + $formContent .= $this->getView()->formRowSimple($element); |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
45 | - return $this->openTag($form) . $formContent . $this->closeTag(); |
|
45 | + return $this->openTag($form).$formContent.$this->closeTag(); |
|
46 | 46 | } |
47 | 47 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | protected function additionalOptions() |
21 | 21 | { |
22 | - return 'toolbar: "undo redo | styleselect forecolor | bold italic | alignleft aligncenter alignright alignjustify | ' . |
|
22 | + return 'toolbar: "undo redo | styleselect forecolor | bold italic | alignleft aligncenter alignright alignjustify | '. |
|
23 | 23 | 'bullist numlist outdent indent ", '; |
24 | 24 | } |
25 | 25 | } |