bibcite-8.x-1.x-dev/modules/bibcite_entity/src/Plugin/bibcite/link/DOI.php

modules/bibcite_entity/src/Plugin/bibcite/link/DOI.php
<?php

namespace Drupal\bibcite_entity\Plugin\bibcite\link;

use Drupal\bibcite_entity\Entity\ReferenceInterface;
use Drupal\bibcite_entity\Plugin\BibciteLinkPluginBase;
use Drupal\Core\Url;

/**
 * Build DOI lookup link.
 *
 * @BibciteLink(
 *   id = "doi",
 *   label = @Translation("DOI"),
 * )
 */
class DOI extends BibciteLinkPluginBase {

  /**
   * {@inheritdoc}
   */
  public function buildUrl(ReferenceInterface $reference) {
    $doi_field = $reference->get('bibcite_doi');

    if (!$doi_field->isEmpty()) {
      return Url::fromUri("http://dx.doi.org/{$doi_field->value}");
    }

    return NULL;
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc