
| Current Path : /var/www/html/stolberg/web/core/lib/Drupal/Core/Render/Placeholder/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/stolberg/web/core/lib/Drupal/Core/Render/Placeholder/SingleFlushStrategy.php |
<?php
namespace Drupal\Core\Render\Placeholder;
/**
* Defines the 'single_flush' placeholder strategy.
*
* This is designed to be the fallback strategy, so should have the lowest
* priority. All placeholders that are not yet replaced at this point will be
* rendered as is and delivered directly.
*/
class SingleFlushStrategy implements PlaceholderStrategyInterface {
/**
* {@inheritdoc}
*/
public function processPlaceholders(array $placeholders) {
// Return all placeholders as is; they should be rendered directly.
return $placeholders;
}
}