class CustomFilterBaseFilter in Custom filter 2.0.x
Same name and namespace in other branches
- 8 src/Plugin/Filter/CustomFilterBaseFilter.php \Drupal\customfilter\Plugin\Filter\CustomFilterBaseFilter
Provides a base filter for Custom Filter.
No annotation here, see info alter hook.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\filter\Plugin\FilterBase implements FilterInterface
- class \Drupal\customfilter\Plugin\Filter\CustomFilterBaseFilter
- class \Drupal\filter\Plugin\FilterBase implements FilterInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of CustomFilterBaseFilter
See also
\customfilter_filter_info_alter
File
- src/
Plugin/ Filter/ CustomFilterBaseFilter.php, line 16
Namespace
Drupal\customfilter\Plugin\FilterView source
class CustomFilterBaseFilter extends FilterBase {
/**
* Performs the filter processing.
*
* @param string $text
* The text string to be filtered.
* @param string $langcode
* The language code of the text to be filtered.
*/
public function process($text, $langcode) {
// If the text passed is an empty string, then return it immediately.
if (empty($text)) {
return new FilterProcessResult();
}
/** @var \Drupal\customfilter\Entity\CustomFilter $entity */
$entity = CustomFilter::load($this->settings['id']);
$globals =& static::getGlobals('push');
$globals->text = $text;
$rules = $entity
->getRulesTree();
if (is_array($rules) && count($rules)) {
// Reset the object containing the global variables.
static::getCodeVars(TRUE);
// Prepare the stack used to save the parent rule.
$globals->stack = [];
foreach ($rules as $rule) {
if ($rule['enabled']) {
$globals->stack[] = $rule;
$globals->text = preg_replace_callback($rule['pattern'], [
CustomFilterBaseFilter::class,
'applyRules',
], $globals->text);
array_pop($globals->stack);
}
}
}
$text = $globals->text;
static::getGlobals('pop');
$result = new FilterProcessResult($text);
$result
->addCacheTags($entity
->getCacheTagsToInvalidate());
if (!$entity
->getCache()) {
$result
->setCacheMaxAge(0);
}
return $result;
}
/**
* Get the tips for the filter.
*
* @param bool $long
* If get the long or short tip.
*
* @return string
* The tip to show for the user.
*/
public function tips($long = FALSE) {
$entity = CustomFilter::load($this->settings['id']);
if ($long) {
return $entity
->getLongtip();
}
else {
return $entity
->getShorttip();
}
}
/**
* Replace the text using rules.
*
* @param array $matches
* The text match by regular expression.
*
* @return string
* The text after rules have beem apply.
*/
public static function applyRules(array $matches) {
$globals =& static::getGlobals();
$result = $matches[0];
$rule = end($globals->stack);
$code = $rule['code'];
$pattern = $rule['pattern'];
$replacement = $rule['replacement'];
if (is_array($sub = $rule['sub']) && count($sub)) {
foreach ($sub as $subrule) {
if ($subrule['enabled']) {
$globals->stack[] = $subrule;
$substr =& $matches[$subrule['matches']];
$substr = preg_replace_callback($subrule['pattern'], [
CustomFilterBaseFilter::class,
'applyRules',
], $substr);
array_pop($globals->stack);
}
}
if ($code) {
CustomFilterBaseFilter::replaceCallback($replacement, TRUE);
$result = CustomFilterBaseFilter::replaceCallback($matches);
}
else {
$result = $replacement;
$rmatches = [];
$reps = [];
preg_match_all('/([^\\\\]|^)(\\$([0-9]{1,2}|\\{([0-9]{1,2})\\}))/', $replacement, $rmatches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL);
foreach ($rmatches[4] as $key => $val) {
if ($val == '') {
$index = $rmatches[3][$key][0];
}
else {
// To support PHP7.4: see [#3151616].
$index = $rmatches[4][$key][1] != -1 ? $rmatches[4][$key][0] : $rmatches[3][$key][0];
}
$offset = $rmatches[2][$key][1];
$length = strlen($rmatches[2][$key][0]);
$reps[] = [
'index' => intval($index),
'offset' => $offset,
'length' => $length,
];
}
krsort($reps);
foreach ($reps as $rep) {
$result = substr_replace($result, $matches[$rep['index']], $rep['offset'], $rep['length']);
}
}
}
elseif ($code) {
CustomFilterBaseFilter::replaceCallback($replacement, TRUE);
$result = preg_replace_callback($pattern, [
CustomFilterBaseFilter::class,
'replaceCallback',
], $result);
}
else {
$result = preg_replace($pattern, $replacement, $result);
}
return $result;
}
/**
* Helper function for preg_replace_callback().
*/
public static function replaceCallback($matches, $init = FALSE) {
static $code;
if ($init) {
$code = $matches;
return '';
}
static::getCodeVars();
// phpcs:ignore
@eval($code);
return isset($result) ? $result : '';
}
/**
* Return the global object containing the global properties.
*
* Return the global object containing the global properties used in the
* replacement PHP code.
*
* @param bool $reset
* Boolean value set to TRUE when the global object must be reset.
*/
public static function &getCodeVars($reset = FALSE) {
static $vars;
if (!isset($vars) || $reset) {
$vars = new \stdClass();
}
return $vars;
}
/**
* Return an object with global variables used during the execution of a rule.
*/
public static function &getGlobals($op = '') {
static $globals = [], $index = 0;
if ($op == 'push') {
$globals[++$index] = new \stdClass();
}
elseif ($op == 'pop' && $index) {
unset($globals[$index--]);
}
return $globals[$index];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CustomFilterBaseFilter:: |
public static | function | Replace the text using rules. | |
CustomFilterBaseFilter:: |
public static | function | Return the global object containing the global properties. | |
CustomFilterBaseFilter:: |
public static | function | Return an object with global variables used during the execution of a rule. | |
CustomFilterBaseFilter:: |
public | function |
Performs the filter processing. Overrides FilterInterface:: |
|
CustomFilterBaseFilter:: |
public static | function | Helper function for preg_replace_callback(). | |
CustomFilterBaseFilter:: |
public | function |
Get the tips for the filter. Overrides FilterBase:: |
|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FilterBase:: |
public | property | The name of the provider that owns this filter. | |
FilterBase:: |
public | property | An associative array containing the configured settings of this filter. | |
FilterBase:: |
public | property | A Boolean indicating whether this filter is enabled. | |
FilterBase:: |
public | property | The weight of this filter compared to others in a filter collection. | |
FilterBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
1 |
FilterBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableInterface:: |
|
FilterBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
FilterBase:: |
public | function |
Returns the administrative description for this filter plugin. Overrides FilterInterface:: |
|
FilterBase:: |
public | function |
Returns HTML allowed by this filter's configuration. Overrides FilterInterface:: |
4 |
FilterBase:: |
public | function |
Returns the administrative label for this filter plugin. Overrides FilterInterface:: |
|
FilterBase:: |
public | function |
Returns the processing type of this filter plugin. Overrides FilterInterface:: |
|
FilterBase:: |
public | function |
Prepares the text for processing. Overrides FilterInterface:: |
|
FilterBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
1 |
FilterBase:: |
public | function |
Generates a filter's settings form. Overrides FilterInterface:: |
3 |
FilterBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
4 |
FilterInterface:: |
constant | HTML tag and attribute restricting filters to prevent XSS attacks. | ||
FilterInterface:: |
constant | Non-HTML markup language filters that generate HTML. | ||
FilterInterface:: |
constant | Irreversible transformation filters. | ||
FilterInterface:: |
constant | Reversible transformation filters. | ||
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |