You are here

MetadataPrefixInterface.php in Views OAI-PMH 8

File

src/Plugin/MetadataPrefixInterface.php
View source
<?php

namespace Drupal\views_oai_pmh\Plugin;

use Drupal\Component\Plugin\PluginInspectionInterface;

/**
 * Defines an interface for OAI-PMH Metadata Prefix plugins.
 */
interface MetadataPrefixInterface extends PluginInspectionInterface {

  /**
   *
   */
  public function getElements() : array;

  /**
   *
   */
  public function getRootNodeName() : string;

  /**
   *
   */
  public function getRootNodeAttributes() : array;

  /**
   *
   */
  public function getSchema() : string;

  /**
   *
   */
  public function getNamespace() : string;

}

Interfaces

Namesort descending Description
MetadataPrefixInterface Defines an interface for OAI-PMH Metadata Prefix plugins.