Created
May 14, 2014 20:57
-
-
Save jmcclell/11d9d9e1381d81554022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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