1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00
wallabag/src/Wallabag/CoreBundle/Twig/WallabagExtension.php

24 lines
421 B
PHP
Raw Normal View History

2015-09-29 22:59:44 +02:00
<?php
namespace Wallabag\CoreBundle\Twig;
class WallabagExtension extends \Twig_Extension
{
public function getFilters()
{
return [
new \Twig_SimpleFilter('removeWww', [$this, 'removeWww']),
];
2015-09-29 22:59:44 +02:00
}
public function removeWww($url)
{
2015-10-01 09:26:52 +02:00
return preg_replace('/^www\./i', '', $url);
2015-09-29 22:59:44 +02:00
}
public function getName()
{
return 'wallabag_extension';
}
}