NullTagPlugin.php in Extensible BBCode 8.3
Same filename and directory in other branches
Namespace
Drupal\xbbcode\Plugin\XBBCodeFile
src/Plugin/XBBCode/NullTagPlugin.phpView source
<?php
namespace Drupal\xbbcode\Plugin\XBBCode;
use Drupal;
use Drupal\xbbcode\Parser\Tree\TagElementInterface;
use Drupal\xbbcode\Plugin\TagPluginBase;
use Drupal\xbbcode\TagProcessResult;
/**
* Provides a fallback placeholder plugin.
*
* BBCode tags will be assigned to this plugin when they are still enabled.
*
* @XBBCodeTag(
* id = "null",
* label = @Translation("[This tag is unavailable.]"),
* description = @Translation("The plugin providing this tag could not be loaded."),
* sample = @Translation("[{{ name }}]...[/{{ name }}]"),
* name = "null"
* )
*/
class NullTagPlugin extends TagPluginBase {
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
Drupal::logger('xbbcode')
->alert('Missing BBCode tag plugin: %tag.', [
'%tag' => $plugin_id,
]);
}
/**
* {@inheritdoc}
*/
public function doProcess(TagElementInterface $tag) : TagProcessResult {
return new TagProcessResult((string) $tag
->getOuterSource());
}
}
Classes
Name | Description |
---|---|
NullTagPlugin | Provides a fallback placeholder plugin. |