ImportPluginProperties.php 822 B

12345678910111213141516171819202122232425262728293031
  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. namespace PhpMyAdmin\Properties\Plugins;
  9. /**
  10. * Defines possible options and getters and setters for them.
  11. *
  12. * @package PhpMyAdmin
  13. */
  14. class ImportPluginProperties extends PluginPropertyItem
  15. {
  16. /**
  17. * Returns the property item type of either an instance of
  18. * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
  19. * "text", "radio", etc ) or
  20. * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main"
  21. * or "subgroup" )
  22. * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )
  23. *
  24. * @return string
  25. */
  26. public function getItemType()
  27. {
  28. return "import";
  29. }
  30. }