ImportPluginProperties.class.php 818 B

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