ImportPluginProperties.php 756 B

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