Completed
Push — master ( df9201...fc5d0d )
by Goffy
9s
created
class/files/templates/user/TemplatesUserSubmit.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class TemplatesUserSubmit extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return TemplatesUserSubmit
44 44
      */
45 45
     public static function getInstance()
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param string $table
59
-    *  @param string $filename
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param string $table
59
+     *  @param string $filename
60 60
      */
61 61
     public function write($module, $table, $filename)
62 62
     {
@@ -78,9 +78,9 @@  discard block
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-    *  @private function getTemplatesUserSubmit
82
-    *  @param string $moduleDirname
83
-    *  @param string $language
81
+     *  @private function getTemplatesUserSubmit
82
+     *  @param string $moduleDirname
83
+     *  @param string $language
84 84
      *
85 85
      * @return string
86 86
      */
@@ -108,8 +108,8 @@  discard block
 block discarded – undo
108 108
     }
109 109
 
110 110
     /**
111
-    *  @private function getTemplatesUserSubmitFooter
112
-    *  @param string $moduleDirname
111
+     *  @private function getTemplatesUserSubmitFooter
112
+     *  @param string $moduleDirname
113 113
      *
114 114
      * @return string
115 115
      */
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-    *  @public function render
125
-    *  @param null
124
+     *  @public function render
125
+     *  @param null
126 126
      * @return bool|string
127 127
      */
128 128
     public function render()
Please login to merge, or discard this patch.
class/files/templates/admin/TemplatesAdminAbout.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class TemplatesAdminAbout extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-    *  @public function render
67
-    *  @param null
66
+     *  @public function render
67
+     *  @param null
68 68
      * @return bool|string
69 69
      */
70 70
     public function render()
Please login to merge, or discard this patch.
class/files/TDMCreateFile.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
 class TDMCreateFile extends TDMCreateTableFields
29 29
 {
30 30
     /**
31
-    * @var string
32
-    */
31
+     * @var string
32
+     */
33 33
     private $xf = null;
34 34
 
35 35
     /**
@@ -54,39 +54,39 @@  discard block
 block discarded – undo
54 54
     private $uploadPath = null;
55 55
 
56 56
     /**
57
-    * @var string
58
-    */
57
+     * @var string
58
+     */
59 59
     private $content = null;
60 60
 
61 61
     /**
62
-    * @var mixed
63
-    */
62
+     * @var mixed
63
+     */
64 64
     private $created = null;
65 65
 
66 66
     /**
67
-    * @var mixed
68
-    */
67
+     * @var mixed
68
+     */
69 69
     private $notCreated = null;
70 70
 
71 71
     /**
72
-    * @var string
73
-    */
72
+     * @var string
73
+     */
74 74
     private $mode = null;
75 75
 
76 76
     /**
77
-    * @var string
78
-    */
77
+     * @var string
78
+     */
79 79
     protected $phpcode = null;
80 80
 
81 81
     /**
82
-    * @var string
83
-    */
82
+     * @var string
83
+     */
84 84
     protected $htmlcode;
85 85
 
86 86
     /**
87
-    *  @public function constructor
88
-    *  @param null
89
-    */
87
+     *  @public function constructor
88
+     *  @param null
89
+     */
90 90
 
91 91
     public function __construct()
92 92
     {
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-    *  @public static function getInstance
99
-    *  @param null
98
+     *  @public static function getInstance
99
+     *  @param null
100 100
      * @return TDMCreateFile
101 101
      */
102 102
     public static function getInstance()
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
     }
137 137
 
138 138
     /**
139
-    *  @public function write
140
-    *  @param string $module
141
-    *  @param string $fileName
139
+     *  @public function write
140
+     *  @param string $module
141
+     *  @param string $fileName
142 142
      */
143 143
     /*public function write($module, $fileName)
144 144
     {
@@ -147,8 +147,8 @@  discard block
 block discarded – undo
147 147
     }*/
148 148
 
149 149
     /**
150
-    *  @private function setRepositoryPath
151
-    *  @param string $moduleDirname
150
+     *  @private function setRepositoryPath
151
+     *  @param string $moduleDirname
152 152
      */
153 153
     private function setRepositoryPath($moduleDirname)
154 154
     {
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
     }
157 157
 
158 158
     /**
159
-    *  @private function getRepositoryPath
160
-    *  @param null
159
+     *  @private function getRepositoryPath
160
+     *  @param null
161 161
      * @return string
162 162
      */
163 163
     private function getRepositoryPath()
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-    *  @public function getFileName
199
-    *  @param null
198
+     *  @public function getFileName
199
+     *  @param null
200 200
      * @return mixed
201 201
      */
202 202
     public function getFileName()
@@ -225,8 +225,8 @@  discard block
 block discarded – undo
225 225
     }
226 226
 
227 227
     /**
228
-    *  @private function getFolderName
229
-    *  @param null
228
+     *  @private function getFolderName
229
+     *  @param null
230 230
      * @return string
231 231
      */
232 232
     private function getFolderName()
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
     }
246 246
 
247 247
     /**
248
-    *  @public function getUploadPath
249
-    *  @param null
248
+     *  @public function getUploadPath
249
+     *  @param null
250 250
      * @return string
251 251
      */
252 252
     private function getUploadPath()
@@ -261,8 +261,8 @@  discard block
 block discarded – undo
261 261
     }
262 262
 
263 263
     /**
264
-    *  @private function getCreated
265
-    *  @param null
264
+     *  @private function getCreated
265
+     *  @param null
266 266
      * @return bool
267 267
      */
268 268
     private function getCreated()
@@ -271,8 +271,8 @@  discard block
 block discarded – undo
271 271
     }
272 272
 
273 273
     /**
274
-    *  @private function getNotCreated
275
-    *  @param null
274
+     *  @private function getNotCreated
275
+     *  @param null
276 276
      * @return bool
277 277
      */
278 278
     private function getNotCreated()
@@ -301,10 +301,10 @@  discard block
 block discarded – undo
301 301
     }
302 302
 
303 303
     /**
304
-    *  @public function getLanguage
305
-    *  @param string $moduleDirname
306
-    *  @param string $prefix
307
-    *  @param string $suffix
304
+     *  @public function getLanguage
305
+     *  @param string $moduleDirname
306
+     *  @param string $prefix
307
+     *  @param string $suffix
308 308
      *
309 309
      * @return string
310 310
      */
@@ -322,8 +322,8 @@  discard block
 block discarded – undo
322 322
     }
323 323
 
324 324
     /**
325
-    *  @public function getLeftString
326
-    *  @param string $string
325
+     *  @public function getLeftString
326
+     *  @param string $string
327 327
      *
328 328
      * @return string
329 329
      */
@@ -419,8 +419,8 @@  discard block
 block discarded – undo
419 419
     }
420 420
 
421 421
     /**
422
-    *  @public function getInclude
423
-    *  @param $filename
422
+     *  @public function getInclude
423
+     *  @param $filename
424 424
      * @return string
425 425
      */
426 426
     public function getInclude($filename = 'header')
@@ -429,8 +429,8 @@  discard block
 block discarded – undo
429 429
     }
430 430
 
431 431
     /**
432
-    *  @public function getIncludeOnce
433
-    *  @param $filename
432
+     *  @public function getIncludeOnce
433
+     *  @param $filename
434 434
      * @return string
435 435
      */
436 436
     public function getIncludeOnce($filename = 'header')
@@ -463,9 +463,9 @@  discard block
 block discarded – undo
463 463
     }
464 464
 
465 465
     /**
466
-    *  @public function getHeaderFilesComments
467
-    *  @param string $module
468
-    *  @param string $fileName
466
+     *  @public function getHeaderFilesComments
467
+     *  @param string $module
468
+     *  @param string $fileName
469 469
      * @param $noPhpFile
470 470
      *
471 471
      * @return string
@@ -510,8 +510,8 @@  discard block
 block discarded – undo
510 510
     }
511 511
 
512 512
     /**
513
-    *  @public function renderFile
514
-    *  @param null
513
+     *  @public function renderFile
514
+     *  @param null
515 515
      * @return string
516 516
      */
517 517
     public function renderFile()
Please login to merge, or discard this patch.
class/files/user/UserXoopsVersion.php 1 patch
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
 class UserXoopsVersion extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    * @var array
32
-    */
31
+     * @var array
32
+     */
33 33
     private $kw = [];
34 34
 
35 35
     /**
36
-    *  @public function constructor
37
-    *  @param null
38
-    */
36
+     *  @public function constructor
37
+     *  @param null
38
+     */
39 39
 
40 40
     public function __construct()
41 41
     {
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-    *  @static function getInstance
47
-    *  @param null
46
+     *  @static function getInstance
47
+     *  @param null
48 48
      * @return UserXoopsVersion
49 49
      */
50 50
     public static function getInstance()
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-    *  @public function write
62
-    *  @param $module
63
-    *  @param mixed $table
64
-    *  @param mixed $tables
65
-    *  @param $filename
61
+     *  @public function write
62
+     *  @param $module
63
+     *  @param mixed $table
64
+     *  @param mixed $tables
65
+     *  @param $filename
66 66
      */
67 67
     public function write($module, $table, $tables, $filename)
68 68
     {
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-    *  @public function setKeywords
81
-    *  @param mixed $keywords
80
+     *  @public function setKeywords
81
+     *  @param mixed $keywords
82 82
      */
83 83
     public function setKeywords($keywords)
84 84
     {
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
     }
91 91
 
92 92
     /**
93
-    *  @public function getKeywords
94
-    *  @param null
93
+     *  @public function getKeywords
94
+     *  @param null
95 95
      * @return array
96 96
      */
97 97
     public function getKeywords()
@@ -141,9 +141,9 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-    *  @private function getXoopsVersionMySQL
145
-    *  @param $moduleDirname
146
-    *  @param $table
144
+     *  @private function getXoopsVersionMySQL
145
+     *  @param $moduleDirname
146
+     *  @param $table
147 147
      * @param $tables
148 148
      * @return string
149 149
      */
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     }
170 170
 
171 171
     /**
172
-    *  @private function getXoopsVersionSearch
172
+     *  @private function getXoopsVersionSearch
173 173
      * @param $moduleDirname
174 174
      *
175 175
      * @return string
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
     }
187 187
 
188 188
     /**
189
-    *  @private function getXoopsVersionComments
190
-    *  @param $moduleDirname
189
+     *  @private function getXoopsVersionComments
190
+     *  @param $moduleDirname
191 191
      *
192 192
      * @return string
193 193
      */
@@ -206,8 +206,8 @@  discard block
 block discarded – undo
206 206
     }
207 207
 
208 208
     /**
209
-    *  @private function getXoopsVersionTemplatesAdmin
210
-    *  @param $moduleDirname
209
+     *  @private function getXoopsVersionTemplatesAdmin
210
+     *  @param $moduleDirname
211 211
      * @param $tables
212 212
      *
213 213
      * @return string
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     }
236 236
 
237 237
     /**
238
-    *  @private function getXoopsVersionTemplatesLine
238
+     *  @private function getXoopsVersionTemplatesLine
239 239
      * @param        $moduleDirname
240 240
      * @param        $type
241 241
      * @param string $extra
@@ -262,8 +262,8 @@  discard block
 block discarded – undo
262 262
     }
263 263
 
264 264
     /**
265
-    *  @private function getXoopsVersionTemplatesUser
266
-    *  @param $moduleDirname
265
+     *  @private function getXoopsVersionTemplatesUser
266
+     *  @param $moduleDirname
267 267
      * @param $tables
268 268
      * @return string
269 269
      */
@@ -325,8 +325,8 @@  discard block
 block discarded – undo
325 325
     }
326 326
 
327 327
     /**
328
-    *  @private function getXoopsVersionSubmenu
329
-       * @param $language
328
+     *  @private function getXoopsVersionSubmenu
329
+     * @param $language
330 330
      * @param $tables
331 331
      * @return string
332 332
      */
@@ -358,8 +358,8 @@  discard block
 block discarded – undo
358 358
     }
359 359
 
360 360
     /**
361
-    *  @private function getXoopsVersionBlocks
362
-      * @param $moduleDirname
361
+     *  @private function getXoopsVersionBlocks
362
+     * @param $moduleDirname
363 363
      * @param $tables
364 364
      * @param $language
365 365
      * @return string
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
     }
392 392
 
393 393
     /**
394
-    *  @private function getXoopsVersionTypeBlocks
394
+     *  @private function getXoopsVersionTypeBlocks
395 395
      * @param $moduleDirname
396 396
      * @param $tableName
397 397
      * @param $stuTableSoleName
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
     }
419 419
 
420 420
     /**
421
-    *  @private function getXoopsVersionConfig
421
+     *  @private function getXoopsVersionConfig
422 422
      * @param $module
423 423
      * @param $table
424 424
      * @param $language
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
     }
606 606
 
607 607
     /**
608
-    *  @private function getNotificationsType
608
+     *  @private function getNotificationsType
609 609
      * @param $language
610 610
      * @param $type
611 611
      * @param $tableName
@@ -648,7 +648,7 @@  discard block
 block discarded – undo
648 648
     }
649 649
 
650 650
     /**
651
-    *  @private function getXoopsVersionNotifications
651
+     *  @private function getXoopsVersionNotifications
652 652
      * @param $module
653 653
      * @param $language
654 654
      * @return string
@@ -738,7 +738,7 @@  discard block
 block discarded – undo
738 738
     }
739 739
 
740 740
     /**
741
-    *  @private function getXoopsVersionNotificationGlobal
741
+     *  @private function getXoopsVersionNotificationGlobal
742 742
      * @param $language
743 743
      * @param $type
744 744
      * @param $name
@@ -765,7 +765,7 @@  discard block
 block discarded – undo
765 765
     }
766 766
 
767 767
     /**
768
-    *  @private function getXoopsVersionNotificationCategory
768
+     *  @private function getXoopsVersionNotificationCategory
769 769
      * @param $language
770 770
      * @param $type
771 771
      * @param $name
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
     }
794 794
 
795 795
     /**
796
-    *  @private function getXoopsVersionNotificationTableName
796
+     *  @private function getXoopsVersionNotificationTableName
797 797
      * @param $language
798 798
      * @param $type
799 799
      * @param $name
@@ -822,7 +822,7 @@  discard block
 block discarded – undo
822 822
     }
823 823
 
824 824
     /**
825
-    *  @private function getXoopsVersionNotifications
825
+     *  @private function getXoopsVersionNotifications
826 826
      * @param $language
827 827
      * @param $type
828 828
      * @param $name
@@ -854,8 +854,8 @@  discard block
 block discarded – undo
854 854
     }
855 855
 
856 856
     /**
857
-    *  @public function render
858
-    *  @param null
857
+     *  @public function render
858
+     *  @param null
859 859
      * @return bool|string
860 860
      */
861 861
     public function render()
Please login to merge, or discard this patch.
class/files/user/UserSubmit.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class UserSubmit extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return UserSubmit
44 44
      */
45 45
     public static function getInstance()
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param mixed $table
59
-    *  @param string $filename
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param mixed $table
59
+     *  @param string $filename
60 60
      */
61 61
     public function write($module, $table, $filename)
62 62
     {
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
     }
126 126
 
127 127
     /**
128
-    *  @public function getUserSubmitSave
129
-    *  @param string $moduleDirname
128
+     *  @public function getUserSubmitSave
129
+     *  @param string $moduleDirname
130 130
      * @param        $fields
131
-    *  @param string $tableName
131
+     *  @param string $tableName
132 132
      * @param        $tableSoleName
133 133
      * @param        $tableSubmit
134 134
      * @param        $tableAutoincrement
@@ -209,8 +209,8 @@  discard block
 block discarded – undo
209 209
     }
210 210
 
211 211
     /**
212
-    *  @public function render
213
-    *  @param null
212
+     *  @public function render
213
+     *  @param null
214 214
      * @return bool|string
215 215
      */
216 216
     public function render()
Please login to merge, or discard this patch.
class/files/admin/AdminMenu.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class AdminMenu extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
43
-    * @return AdminMenu
44
-    */
41
+     *  @static function getInstance
42
+     *  @param null
43
+     * @return AdminMenu
44
+     */
45 45
     public static function getInstance()
46 46
     {
47 47
         static $instance = false;
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-    *  @public function write
57
-    *  @param string $module
58
-    *  @param string $filename
59
-    */
56
+     *  @public function write
57
+     *  @param string $module
58
+     *  @param string $filename
59
+     */
60 60
     public function write($module, $filename)
61 61
     {
62 62
         $this->setModule($module);
@@ -91,10 +91,10 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-    *  @private function getAdminMenuHeader
95
-    *  @param null
96
-    * @return string
97
-    */
94
+     *  @private function getAdminMenuHeader
95
+     *  @param null
96
+     * @return string
97
+     */
98 98
     private function getAdminMenuHeader()
99 99
     {
100 100
         $dirname = ['$dirname' => 'basename(dirname(__DIR__))'];
@@ -112,12 +112,12 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-    *  @private function getAdminMenuDashboard
116
-    *  @param string $language
117
-    *  @param integer $menu
118
-    *
119
-    * @return string
120
-    */
115
+     *  @private function getAdminMenuDashboard
116
+     *  @param string $language
117
+     *  @param integer $menu
118
+     *
119
+     * @return string
120
+     */
121 121
     private function getAdminMenuDashboard($language, $menu)
122 122
     {
123 123
         $xc = TDMCreateXoopsCode::getInstance();
@@ -130,12 +130,12 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-    *  @private function getAdminMenuImagesPath
134
-    *  @param array $tables
135
-    *  @param integer $t
136
-    *
137
-    * @return string
138
-    */
133
+     *  @private function getAdminMenuImagesPath
134
+     *  @param array $tables
135
+     *  @param integer $t
136
+     *
137
+     * @return string
138
+     */
139 139
     private function getAdminMenuImagesPath($tables, $t)
140 140
     {
141 141
         $xc = TDMCreateXoopsCode::getInstance();
@@ -193,10 +193,10 @@  discard block
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-    *  @public function render
197
-    *  @param null
198
-    * @return bool|string
199
-    */
196
+     *  @public function render
197
+     *  @param null
198
+     * @return bool|string
199
+     */
200 200
     public function render()
201 201
     {
202 202
         $module = $this->getModule();
Please login to merge, or discard this patch.
class/files/assets/css/CssStyles.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class CssStyles extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return CssStyles
44 44
      */
45 45
     public static function getInstance()
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-    *  @public function render
68
-    *  @param null
67
+     *  @public function render
68
+     *  @param null
69 69
      * @return bool|string
70 70
      */
71 71
     public function render()
Please login to merge, or discard this patch.
class/files/assets/css/admin/CssAdminStyles.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 class CssAdminStyles extends TDMCreateFile
29 29
 {
30 30
     /**
31
-    *  @public function constructor
32
-    *  @param null
33
-    */
31
+     *  @public function constructor
32
+     *  @param null
33
+     */
34 34
 
35 35
     public function __construct()
36 36
     {
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    *  @static function getInstance
42
-    *  @param null
41
+     *  @static function getInstance
42
+     *  @param null
43 43
      * @return CssAdminStyles
44 44
      */
45 45
     public static function getInstance()
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-    *  @public function render
68
-    *  @param null
67
+     *  @public function render
68
+     *  @param null
69 69
      * @return bool|string
70 70
      */
71 71
     public function render()
Please login to merge, or discard this patch.
class/files/TDMCreateHtmlCode.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     }
46 46
 
47 47
     /**
48
-    *  @public function getHtmlTag
48
+     *  @public function getHtmlTag
49 49
      * @param string $tag
50 50
      * @param array  $attributes
51 51
      * @param string $content
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-    *  @private function setAttributes
78
-    *  @param array $attributes
79
-    *
80
-    * @return string
81
-    */
77
+     *  @private function setAttributes
78
+     *  @param array $attributes
79
+     *
80
+     * @return string
81
+     */
82 82
     private function getAttributes($attributes)
83 83
     {
84 84
         $str = '';
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-    *  @public function getHtmlEmpty
96
-    *  @param string $empty
95
+     *  @public function getHtmlEmpty
96
+     *  @param string $empty
97 97
      *
98 98
      * @return string
99 99
      */
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-    *  @public function getHtmlComment
107
-    *  @param string $htmlComment
108
-       * @return string
106
+     *  @public function getHtmlComment
107
+     *  @param string $htmlComment
108
+     * @return string
109 109
      */
110 110
     public function getHtmlComment($htmlComment = '')
111 111
     {
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-    *  @public function getHtmlBr
117
-    *  @param int $brNumb
116
+     *  @public function getHtmlBr
117
+     *  @param int $brNumb
118 118
      * @param string $htmlClass
119 119
      * @param string $t
120 120
      * @return string
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
-    *  @public function getHtmlHNumb
134
+     *  @public function getHtmlHNumb
135 135
      * @param string $content
136 136
      * @param string $n
137 137
      * @param string $htmlHClass
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-    *  @public function getHtmlDiv
150
+     *  @public function getHtmlDiv
151 151
      * @param string $content
152 152
      * @param string $divClass
153 153
      * @param string $t
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     }
165 165
 
166 166
     /**
167
-    *  @public function getHtmlPre
167
+     *  @public function getHtmlPre
168 168
      * @param string $content
169 169
      * @param string $preClass
170 170
      * @param string $t
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
     }
182 182
 
183 183
     /**
184
-    *  @public function getHtmlSpan
185
-    *  @param string $content
184
+     *  @public function getHtmlSpan
185
+     *  @param string $content
186 186
      * @param string $spanClass
187 187
      * @param string $t
188 188
      * @return string
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    *  @public function getHtmlParagraph
199
+     *  @public function getHtmlParagraph
200 200
      * @param string $content
201 201
      * @param string $pClass
202 202
      * @param string $t
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     }
214 214
 
215 215
     /**
216
-    *  @public function getHtmlI
216
+     *  @public function getHtmlI
217 217
      * @param string $content
218 218
      * @param string $iClass
219 219
      * @param string $t
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     }
229 229
 
230 230
     /**
231
-    *  @public function getHtmlUl
231
+     *  @public function getHtmlUl
232 232
      * @param string $content
233 233
      * @param string $ulClass
234 234
      * @param string $t
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
     }
246 246
 
247 247
     /**
248
-    *  @public function getHtmlOl
248
+     *  @public function getHtmlOl
249 249
      * @param string $content
250 250
      * @param string $olClass
251 251
      * @param string $t
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     }
263 263
 
264 264
     /**
265
-    *  @public function getHtmlLi
265
+     *  @public function getHtmlLi
266 266
      * @param string $content
267 267
      * @param string $liClass
268 268
      * @param string $t
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
     }
277 277
 
278 278
     /**
279
-    *  @public function getHtmlStrong
279
+     *  @public function getHtmlStrong
280 280
      * @param string $content
281 281
      * @param string $strongClass
282 282
      * @param string $t
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     }
291 291
 
292 292
     /**
293
-    *  @public function getHtmlAnchor
293
+     *  @public function getHtmlAnchor
294 294
      * @param string $url
295 295
      * @param string $content
296 296
      * @param string $title
@@ -310,9 +310,9 @@  discard block
 block discarded – undo
310 310
     }
311 311
 
312 312
     /**
313
-    *  @public function getHtmlImage
314
-    *  @param string $src
315
-    *  @param string $alt
313
+     *  @public function getHtmlImage
314
+     *  @param string $src
315
+     *  @param string $alt
316 316
      * @param string $imgClass
317 317
      * @param string $t
318 318
      * @return string
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
     }
327 327
 
328 328
     /**
329
-    *  @public function getHtmlTable
329
+     *  @public function getHtmlTable
330 330
      * @param string $content
331 331
      * @param string $tableClass
332 332
      * @param string $t
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     }
344 344
 
345 345
     /**
346
-    *  @public function getHtmlTableThead
346
+     *  @public function getHtmlTableThead
347 347
      * @param string $content
348 348
      * @param string $theadClass
349 349
      * @param string $t
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
     }
361 361
 
362 362
     /**
363
-    *  @public function getHtmlTableTbody
363
+     *  @public function getHtmlTableTbody
364 364
      * @param string $content
365 365
      * @param string $tbodyClass
366 366
      * @param string $t
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     }
378 378
 
379 379
     /**
380
-    *  @public function getHtmlTableTfoot
380
+     *  @public function getHtmlTableTfoot
381 381
      * @param string $content
382 382
      * @param string $tfootClass
383 383
      * @param string $t
@@ -394,12 +394,12 @@  discard block
 block discarded – undo
394 394
     }
395 395
 
396 396
     /**
397
-    *  @public function getHtmlTableRow
397
+     *  @public function getHtmlTableRow
398 398
      * @param string $content
399 399
      * @param string $trClass
400 400
      * @param string $t
401 401
      * @return string
402
-      */
402
+     */
403 403
     public function getHtmlTableRow($content = '', $trClass = '', $t = '')
404 404
     {
405 405
         $rTrClass = ('' != $trClass) ? " class='{$trClass}'" : '';
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     }
412 412
 
413 413
     /**
414
-    *  @public function getHtmlTableHead
414
+     *  @public function getHtmlTableHead
415 415
      * @param string $content
416 416
      * @param string $thClass
417 417
      * @param string $colspan
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
     }
428 428
 
429 429
     /**
430
-    *  @public function getHtmlTableData
430
+     *  @public function getHtmlTableData
431 431
      * @param string $content
432 432
      * @param string $tdClass
433 433
      * @param string $colspan
Please login to merge, or discard this patch.