You are here

gdpr_entity_property.class.php in General Data Protection Regulation 7

File

modules/gdpr_fields/plugins/gdpr_data/gdpr_entity_property.class.php
View source
<?php

/**
 * Base class for export UI.
 */
class gdpr_entity_property {
  public $plugin;
  public $name;
  public $options = array();

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

}

Classes

Namesort descending Description
gdpr_entity_property Base class for export UI.