function FilterAlign::tips
Same name in other branches
- 9 core/modules/filter/src/Plugin/Filter/FilterAlign.php \Drupal\filter\Plugin\Filter\FilterAlign::tips()
- 8.9.x core/modules/filter/src/Plugin/Filter/FilterAlign.php \Drupal\filter\Plugin\Filter\FilterAlign::tips()
- 11.x core/modules/filter/src/Plugin/Filter/FilterAlign.php \Drupal\filter\Plugin\Filter\FilterAlign::tips()
Overrides FilterBase::tips
File
-
core/
modules/ filter/ src/ Plugin/ Filter/ FilterAlign.php, line 54
Class
- FilterAlign
- Provides a filter to align elements.
Namespace
Drupal\filter\Plugin\FilterCode
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><img src="" data-align="left" /></code></li>
<li>Align an image to the center: <code><img src="" data-align="center" /></code></li>
<li>Align an image to the right: <code><img src="" data-align="right" /></code></li>
<li>… and you can apply this to other elements as well: <code><video src="" data-align="center" /></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.