You are here

class Provider in Views OAI-PMH 8

Hierarchy

Expanded class hierarchy of Provider

1 file declares its use of Provider
Record.php in src/Plugin/views/style/Record.php
1 string reference to 'Provider'
views_oai_pmh.services.yml in ./views_oai_pmh.services.yml
views_oai_pmh.services.yml
1 service uses Provider
views_oai_pmh.provider in ./views_oai_pmh.services.yml
Drupal\views_oai_pmh\Service\Provider

File

src/Service/Provider.php, line 11

Namespace

Drupal\views_oai_pmh\Service
View source
class Provider extends BaseProvider implements MarkupInterface {

  /**
   *
   */
  public function jsonSerialize() {
    return '';
  }

  /**
   *
   */
  public function __toString() {
    return $this
      ->getResponse()
      ->getBody()
      ->getContents();
  }

}

Members