ImportPluginProperties.php 849 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Properties class for the import plug-in
  5. *
  6. * @package PhpMyAdmin
  7. */
  8. declare(strict_types=1);
  9. namespace PhpMyAdmin\Properties\Plugins;
  10. /**
  11. * Defines possible options and getters and setters for them.
  12. *
  13. * @package PhpMyAdmin
  14. */
  15. class ImportPluginProperties extends PluginPropertyItem
  16. {
  17. /**
  18. * Returns the property item type of either an instance of
  19. * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
  20. * "text", "radio", etc ) or
  21. * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
  22. * or "subgroup" )
  23. * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
  24. *
  25. * @return string
  26. */
  27. public function getItemType()
  28. {
  29. return "import";
  30. }
  31. }