function FilterAlign::tips

Overrides FilterBase::tips

File

core/modules/filter/src/Plugin/Filter/FilterAlign.php, line 52

Class

FilterAlign
Provides a filter to align elements.

Namespace

Drupal\filter\Plugin\Filter

Code

public function tips($long = FALSE) {
  if ($long) {
    return $this->t('
        <p>You can align images, videos, blockquotes and so on to the left, right or center. Examples:</p>
        <ul>
          <li>Align an image to the left: <code>&lt;img src="" data-align="left" /&gt;</code></li>
          <li>Align an image to the center: <code>&lt;img src="" data-align="center" /&gt;</code></li>
          <li>Align an image to the right: <code>&lt;img src="" data-align="right" /&gt;</code></li>
          <li>… and you can apply this to other elements as well: <code>&lt;video src="" data-align="center" /&gt;</code></li>
        </ul>');
  }
  else {
    return $this->t('You can align images (<code>data-align="center"</code>), but also videos, blockquotes, and so on.');
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.