aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/libraries/classes/Properties/Options/Items
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/libraries/classes/Properties/Options/Items
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.gz
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.bz2
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/phpmyadmin/libraries/classes/Properties/Options/Items')
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/BoolPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/DocPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/HiddenPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/MessageOnlyPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/NumberPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/RadioPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/SelectPropertyItem.php35
-rw-r--r--srcs/phpmyadmin/libraries/classes/Properties/Options/Items/TextPropertyItem.php35
8 files changed, 0 insertions, 280 deletions
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/BoolPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/BoolPropertyItem.php
deleted file mode 100644
index 7441243..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/BoolPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\BoolPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type bool
- *
- * @package PhpMyAdmin
- */
-class BoolPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "bool";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/DocPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/DocPropertyItem.php
deleted file mode 100644
index 51a05f4..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/DocPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\DocPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type doc
- *
- * @package PhpMyAdmin
- */
-class DocPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "doc";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/HiddenPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/HiddenPropertyItem.php
deleted file mode 100644
index 116666f..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/HiddenPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\HiddenPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type hidden
- *
- * @package PhpMyAdmin
- */
-class HiddenPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "hidden";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/MessageOnlyPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/MessageOnlyPropertyItem.php
deleted file mode 100644
index ab8e1b2..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/MessageOnlyPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\MessageOnlyPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type messageOnly
- *
- * @package PhpMyAdmin
- */
-class MessageOnlyPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "messageOnly";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/NumberPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/NumberPropertyItem.php
deleted file mode 100644
index 9c81deb..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/NumberPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\TextPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type number
- *
- * @package PhpMyAdmin
- */
-class NumberPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "number";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/RadioPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/RadioPropertyItem.php
deleted file mode 100644
index 98f93a9..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/RadioPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\RadioPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type radio
- *
- * @package PhpMyAdmin
- */
-class RadioPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "radio";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/SelectPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/SelectPropertyItem.php
deleted file mode 100644
index ea7abcd..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/SelectPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\SelectPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type select
- *
- * @package PhpMyAdmin
- */
-class SelectPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "select";
- }
-}
diff --git a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/TextPropertyItem.php b/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/TextPropertyItem.php
deleted file mode 100644
index 5c10a54..0000000
--- a/srcs/phpmyadmin/libraries/classes/Properties/Options/Items/TextPropertyItem.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Holds the PhpMyAdmin\Properties\Options\Items\TextPropertyItem class
- *
- * @package PhpMyAdmin
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Properties\Options\Items;
-
-use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
-
-/**
- * Single property item class of type text
- *
- * @package PhpMyAdmin
- */
-class TextPropertyItem extends OptionsPropertyOneItem
-{
- /**
- * Returns the property item type of either an instance of
- * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
- * "text", "radio", etc ) or
- * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
- * or "subgroup" )
- * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
- *
- * @return string
- */
- public function getItemType()
- {
- return "text";
- }
-}