class PubMed in Bibliography & Citation 2.0.x
Same name and namespace in other branches
- 8 modules/bibcite_entity/src/Plugin/bibcite/link/PubMed.php \Drupal\bibcite_entity\Plugin\bibcite\link\PubMed
Build PubMed lookup link.
Plugin annotation
@BibciteLink(
id = "pubmed",
label = @Translation("PubMed"),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\bibcite_entity\Plugin\BibciteLinkPluginBase implements BibciteLinkPluginInterface
- class \Drupal\bibcite_entity\Plugin\bibcite\link\PubMed
- class \Drupal\bibcite_entity\Plugin\BibciteLinkPluginBase implements BibciteLinkPluginInterface
Expanded class hierarchy of PubMed
File
- modules/
bibcite_entity/ src/ Plugin/ bibcite/ link/ PubMed.php, line 17
Namespace
Drupal\bibcite_entity\Plugin\bibcite\linkView source
class PubMed extends BibciteLinkPluginBase {
/**
* {@inheritdoc}
*/
public function buildUrl(ReferenceInterface $reference) {
$pmid_field = $reference
->get('bibcite_pmid');
if (!$pmid_field
->isEmpty()) {
return Url::fromUri("https://www.ncbi.nlm.nih.gov/pubmed/{$pmid_field->value}?dopt=Abstract");
}
return NULL;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BibciteLinkPluginBase:: |
public | function |
Build link using data from Reference entity. Overrides BibciteLinkPluginInterface:: |
|
BibciteLinkPluginBase:: |
public | function |
Get plugin label. Overrides BibciteLinkPluginInterface:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 98 |
PubMed:: |
public | function |
Build URL object. Overrides BibciteLinkPluginBase:: |