Sha256: 64714d7c7cf110d5bcc2aa2e679473193421922313eaa0f860a597c408513bd3
Contents?: true
Size: 818 Bytes
Versions: 2
Compression:
Stored size: 818 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Properties class for the import plug-in * * @package PhpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; } /* This class extends the PluginPropertyItem class */ require_once 'PluginPropertyItem.class.php'; /** * Defines possible options and getters and setters for them. * * @package PhpMyAdmin */ class ImportPluginProperties extends PluginPropertyItem { /** * Returns the property item type of either an instance of * - OptionsPropertyOneItem ( f.e. "bool", "text", "radio", etc ) or * - OptionsPropertyGroup ( "root", "main" or "subgroup" ) * - PluginPropertyItem ( "export", "import", "transformations" ) * * @return string */ public function getItemType() { return "import"; } }
Version data entries
2 entries across 2 versions & 1 rubygems