You are here

class gdpr_entity_property in General Data Protection Regulation 7

Base class for export UI.

Hierarchy

Expanded class hierarchy of gdpr_entity_property

1 string reference to 'gdpr_entity_property'
gdpr_entity_property.inc in modules/gdpr_fields/plugins/gdpr_data/gdpr_entity_property.inc

File

modules/gdpr_fields/plugins/gdpr_data/gdpr_entity_property.class.php, line 6

View source
class gdpr_entity_property {
  public $plugin;
  public $name;
  public $options = array();

  /**
   * Fake constructor.
   */
  public function init($plugin) {
    $this->plugin = $plugin;
  }

}

Members