You are here

protected function FieldTimerCountdownFormatterBase::getDocumentationLink in Field Timer 8

Same name and namespace in other branches
  1. 2.x src/Plugin/Field/FieldFormatter/FieldTimerCountdownFormatterBase.php \Drupal\field_timer\Plugin\Field\FieldFormatter\FieldTimerCountdownFormatterBase::getDocumentationLink()
1 call to FieldTimerCountdownFormatterBase::getDocumentationLink()
FieldTimerCountdownFormatter::settingsForm in src/Plugin/Field/FieldFormatter/FieldTimerCountdownFormatter.php
Returns a form to configure settings for the formatter.

File

src/Plugin/Field/FieldFormatter/FieldTimerCountdownFormatterBase.php, line 134

Class

FieldTimerCountdownFormatterBase
Base implementation of formatters that uses jQuery Countdown plugin.

Namespace

Drupal\field_timer\Plugin\Field\FieldFormatter

Code

protected function getDocumentationLink(array $options = []) {
  return Url::fromUri('http://keith-wood.name/countdownRef.html', $options)
    ->toString();
}