@@ -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 |
@@ -62,7 +62,7 @@ |
||
62 | 62 | |
63 | 63 | |
64 | 64 | return sprintf( |
65 | - '<div class="controls controls-row ' . $form_row_class . '">%s%s</div>', |
|
65 | + '<div class="controls controls-row '.$form_row_class.'">%s%s</div>', |
|
66 | 66 | $labelMarkup, |
67 | 67 | $markups |
68 | 68 | ); |
@@ -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 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * |
81 | 81 | * @return $this |
82 | 82 | */ |
83 | - public function setDescription($description,$params = null) |
|
83 | + public function setDescription($description, $params = null) |
|
84 | 84 | { |
85 | 85 | $this->options['description'] = $description; |
86 | 86 | $this->options['description_params'] = $params; |
@@ -350,9 +350,9 @@ discard block |
||
350 | 350 | if (!$inputExists && $required) { |
351 | 351 | $fieldsetName = ''; |
352 | 352 | if ($fieldset->hasAttribute('name')) { |
353 | - $fieldsetName = 'in Fieldset "' . $fieldset->getAttribute('name') . '" '; |
|
353 | + $fieldsetName = 'in Fieldset "'.$fieldset->getAttribute('name').'" '; |
|
354 | 354 | } |
355 | - throw new \RuntimeException('input for "' . $name . '" ' . $fieldsetName . 'is required but a input-field with this name is not defined'); |
|
355 | + throw new \RuntimeException('input for "'.$name.'" '.$fieldsetName.'is required but a input-field with this name is not defined'); |
|
356 | 356 | } |
357 | 357 | } |
358 | 358 | } |
@@ -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(); |