Symfony: create a twig extension

1. created a file called TheExtension.php with the following content: <?php namespace Something\Core\Extension\Twig; use Twig_Extension; use Twig_Filter_Method; class TheExtension extends Twig_Extension { public function getFilters() { return array( ‘cleanup’ => new Twig_Filter_Method($this, ‘cleanup’) ); } public function cleanup($txt){ $txt = […]