Completed
Push — develop ( db8caa...fa5032 )
by
unknown
07:21
created
module/Core/src/Core/Factory/Form/View/Helper/FormEditorLightFactory.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- *
5
- * @filesource
6
- * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
7
- * @author cbleek
8
- * @license   MIT
9
- */
3
+     * YAWIK
4
+     *
5
+     * @filesource
6
+     * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
7
+     * @author cbleek
8
+     * @license   MIT
9
+     */
10 10
 
11 11
 namespace Core\Factory\Form\View\Helper;
12 12
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
         $helper = new FormEditorLight();
45 45
         if(isset($config['view_helper_config']['form_editor']['light']) && is_array($config['view_helper_config']['form_editor']['light'])){
46
-              $helper->setOptions($config['view_helper_config']['form_editor']['light']);
46
+                $helper->setOptions($config['view_helper_config']['form_editor']['light']);
47 47
         }
48 48
 
49 49
         $helper->setOption('theme' ,  'modern');
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormEditor.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- *
5
- * @filesource
6
- * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
7
- * @license   MIT
8
- * @author    [email protected]
9
- */
3
+     * YAWIK
4
+     *
5
+     * @filesource
6
+     * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
7
+     * @license   MIT
8
+     * @author    [email protected]
9
+     */
10 10
 
11 11
 namespace Core\Form\View\Helper;
12 12
 
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
         'block_formats' => 'Headings=h4;',
37 37
         'removed_menuitems' =>  'newdocument',
38 38
         'plugings' => [
39
-             'autolink lists advlist',
40
-             'visualblocks code fullscreen',
41
-             'contextmenu paste link',
39
+                'autolink lists advlist',
40
+                'visualblocks code fullscreen',
41
+                'contextmenu paste link',
42 42
         ],
43 43
     ];
44 44
 
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
             $elementOptions = $element->getOptions();
138 138
             if (array_key_exists('placeholder', $elementOptions) && !empty($elementOptions['placeholder'])) {
139 139
                 $placeHolder = '<div id="placeholder-' . $name . '" style="border: 0 none; position: relative; top: 0ex; left: 10px; color: #aaa; height: 0px; overflow: visible;' .
140
-                               (empty($content)?'':'display:none;') .
141
-                               '">' . $this->translator->translate($elementOptions['placeholder']) . '</div>';
140
+                                (empty($content)?'':'display:none;') .
141
+                                '">' . $this->translator->translate($elementOptions['placeholder']) . '</div>';
142 142
             }
143 143
             return
144 144
                 $placeHolder
Please login to merge, or discard this patch.