Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-05-18 07:59:38 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-05-18 07:59:38 +0300
commitbaf0985e5ff107aeed05b56e3b99315b2faa03e2 (patch)
treebb118f90b475face2ab8e5556780428f778274b3 /themes
parent01910f5474c324e925c6e7b026dabcecc74ce78c (diff)
Fix phpcs errors
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'themes')
-rw-r--r--themes/metro/css/codemirror.css.php6
-rw-r--r--themes/metro/css/common.css.php6
-rw-r--r--themes/metro/css/designer.css.php6
-rw-r--r--themes/metro/css/enum_editor.css.php6
-rw-r--r--themes/metro/css/gis.css.php6
-rw-r--r--themes/metro/css/jqplot.css.php6
-rw-r--r--themes/metro/css/navigation.css.php6
-rw-r--r--themes/metro/css/resizable-menu.css.php8
-rw-r--r--themes/metro/css/rte.css.php7
-rw-r--r--themes/metro/layout.inc.php7
10 files changed, 64 insertions, 0 deletions
diff --git a/themes/metro/css/codemirror.css.php b/themes/metro/css/codemirror.css.php
index 0d17c71b29..0cac0f0552 100644
--- a/themes/metro/css/codemirror.css.php
+++ b/themes/metro/css/codemirror.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Styles for CodeMirror editor for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/common.css.php b/themes/metro/css/common.css.php
index eb8b7939c2..63ec0af14e 100644
--- a/themes/metro/css/common.css.php
+++ b/themes/metro/css/common.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Common styles for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/designer.css.php b/themes/metro/css/designer.css.php
index 82c524cc60..104d641eb8 100644
--- a/themes/metro/css/designer.css.php
+++ b/themes/metro/css/designer.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Designer styles for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/enum_editor.css.php b/themes/metro/css/enum_editor.css.php
index 712209530a..23202a15ea 100644
--- a/themes/metro/css/enum_editor.css.php
+++ b/themes/metro/css/enum_editor.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * ENUM editor styles for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/gis.css.php b/themes/metro/css/gis.css.php
index 7f12320d50..f5c35451d2 100644
--- a/themes/metro/css/gis.css.php
+++ b/themes/metro/css/gis.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * GIS styles for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/jqplot.css.php b/themes/metro/css/jqplot.css.php
index b0f4fd3d8e..29a84d6e4b 100644
--- a/themes/metro/css/jqplot.css.php
+++ b/themes/metro/css/jqplot.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Styles for jqplot for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/navigation.css.php b/themes/metro/css/navigation.css.php
index ac708d2e03..909ec4fd5a 100644
--- a/themes/metro/css/navigation.css.php
+++ b/themes/metro/css/navigation.css.php
@@ -1,4 +1,10 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Navigation styles for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/resizable-menu.css.php b/themes/metro/css/resizable-menu.css.php
index 605f04db40..33bab4d061 100644
--- a/themes/metro/css/resizable-menu.css.php
+++ b/themes/metro/css/resizable-menu.css.php
@@ -1,4 +1,12 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Styles for the resizable menus
+ *
+ * used by js/vendor/jquery/jquery.menuResizer-1.0.js
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/css/rte.css.php b/themes/metro/css/rte.css.php
index 34c812a200..b8b4624af1 100644
--- a/themes/metro/css/rte.css.php
+++ b/themes/metro/css/rte.css.php
@@ -1,4 +1,11 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Styles for management of Routines, Triggers and Events
+ * for the Metro theme
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
// unplanned execution path
diff --git a/themes/metro/layout.inc.php b/themes/metro/layout.inc.php
index 9061b570fe..9969cd2ec5 100644
--- a/themes/metro/layout.inc.php
+++ b/themes/metro/layout.inc.php
@@ -1,4 +1,11 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * configures general layout
+ * for detailed layout configuration please refer to the css files
+ *
+ * @package PhpMyAdmin-theme
+ */
declare(strict_types=1);
$GLOBALS['cfg']['NaviWidth'] = '250';