Skip to content

Instantly share code, notes, and snippets.

@jmcclell
Created May 14, 2014 20:57
Show Gist options
  • Save jmcclell/11d9d9e1381d81554022 to your computer and use it in GitHub Desktop.
Save jmcclell/11d9d9e1381d81554022 to your computer and use it in GitHub Desktop.
<?php
namespace JLM\SerializerExpressionBundle\ExpressionLanguage;
use Symfony\Component\ExpressionLanguage\ExpressionLanguage as BaseExpressionLanguage;
use Symfony\Component\ExpressionLanguage\Expression;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface;
/**
*/
class ExpressionLanguage extends BaseExpressionLanguage
{
protected $container;
public function __construct(ContainerInterface $container, ParserCacheInterface $cache = null)
{
parent::__construct($cache);
$this->container = $container;
}
protected function registerFunctions()
{
print_r($this->container);
exit;
parent::registerFunctions();
$container = $this->container;
$this->register('service', function ($arg) {
return sprintf('$this->get(%s)', $arg);
}, function (array $variables, $value) use ($container) {
return $container->get($value);
});
$this->register('param', function ($arg) {
return sprintf('$this->getParameter(%s)', $arg);
}, function (array $variables, $value) use ($container) {
return $container->getParameter($value);
});
$this->register('secure', function ($arg) {
return sprintf('$this->get(\'security.context\')->isGranted(%s)', $arg);
}, function (array $variables, $value) use ($container) {
print_r($container);
exit;
return $container->get('security.context')->isGranted(new Expression($value));
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment