Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / properties / plugins / PluginPropertyItem.class.php
blobaf46be2251c22cc4ad9f985f985c4189a9f5c198
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * The top-level class of the "Plugin" subtree of the object-oriented
5 * properties system (the other subtree is "Options").
7 * @package PhpMyAdmin
8 */
9 if (! defined('PHPMYADMIN')) {
10 exit;
13 /* This class extends the PropertyItem class */
14 require_once 'libraries/properties/PropertyItem.class.php';
16 /**
17 * Superclass for
18 * - ExportPluginProperties,
19 * - ImportPluginProperties and
20 * - TransformationsPluginProperties
22 * @package PhpMyAdmin
24 abstract class PluginPropertyItem extends PropertyItem
26 /**
27 * Returns the property type ( either "options", or "plugin" ).
29 * @return string
31 public function getPropertyType()
33 return "plugin";