Update website

This commit is contained in:
Guilhem Lavaux 2024-11-19 09:35:33 +01:00
parent bb4b0f9be8
commit 011b183e28
4263 changed files with 3014 additions and 720369 deletions

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type bool
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type doc
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type hidden
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type messageOnly
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type number
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type radio
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type select
*/
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';
}
}

View file

@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Items;
use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
/**
* Single property item class of type text
*/
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';
}
}