|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?php
-
- namespace Lc\SovBundle\Twig;
-
- use Doctrine\ORM\EntityManagerInterface;
- use EasyCorp\Bundle\EasyAdminBundle\Config\Crud;
- use Lc\SovBundle\Translation\TranslatorAdmin;
- use Liip\ImagineBundle\Imagine\Cache\CacheManager;
- use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
- use Symfony\Component\HttpFoundation\RequestStack;
- use Symfony\Component\HttpKernel\KernelInterface;
- use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
- use Symfony\Contracts\Translation\TranslatorInterface;
- use Twig\Extension\AbstractExtension;
- use Twig\TwigFilter;
- use Twig\TwigFunction;
-
- class TwigExtension extends AbstractExtension
- {
- protected $em;
- protected $kernel;
- protected $parameterBag;
- protected $cacheManager;
- protected $requestStack;
- protected $router;
- protected $translator;
- protected $translatorAdmin;
-
- public function __construct(
- KernelInterface $kernel,
- ParameterBagInterface $parameterBag,
- CacheManager $cacheManager,
- EntityManagerInterface $entityManager,
- RequestStack $requestStack,
- UrlGeneratorInterface $router,
- TranslatorInterface $translator,
- TranslatorAdmin $translatorAdmin
- ) {
- $this->kernel = $kernel;
- $this->parameterBag = $parameterBag;
- $this->cacheManager = $cacheManager;
- $this->em = $entityManager;
- $this->requestStack = $requestStack;
- $this->router = $router;
- $this->translator = $translator;
- $this->translatorAdmin = $translatorAdmin;
- }
-
- public function getFunctions()
- {
- return array(
- new TwigFunction('lc_liip', [$this, 'lcLiip']),
- new TwigFunction('homepage_route', [$this, 'homepageRoute']),
- new TwigFunction('page_by_dev_alias', [$this, 'getPageByDevAlias']),
- new TwigFunction('translated_urls', [$this, 'getTranslatedUrls'])
- );
- }
-
-
- public function getFilters()
- {
- return [
- new TwigFilter('lc_cache', [$this, 'lcCache']),
- new TwigFilter('lc_trans_admin_field', [$this, 'lcTransAdminField']),
- new TwigFilter('lc_trans_admin_help', [$this, 'lcTransAdminHelp']),
- new TwigFilter('lc_trans_admin_panel', [$this, 'lcTransAdminPanel']),
- new TwigFilter('lc_trans_admin_menu', [$this, 'lcTransAdminMenu']),
- new TwigFilter('lc_trans_admin_title', [$this, 'lcTransAdminTitle']),
- new TwigFilter('lc_trans_admin_action', [$this, 'lcTransAdminAction']),
- ];
- }
-
- public function lcCache($file)
- {
- $cacheTime = filemtime($this->kernel->getProjectDir() . '/public' . $file);
- if ($cacheTime) {
- return $file . '?c=' . $cacheTime;
- } else {
- return $file . "?c=0";
- }
- }
-
- public function lcTransAdminField($fieldName, $entityClass)
- {
- return $this->translatorAdmin->transField($fieldName, $entityClass) ;
- }
-
- public function lcTransAdminHelp($fieldName, $entityClass)
- {
- return $this->translatorAdmin->transHelp($fieldName, $entityClass) ;
- }
-
- public function lcTransAdminPanel($panelName, $entityClass)
- {
- return $this->translatorAdmin->transPanel($panelName, $entityClass) ;
- }
-
- public function lcTransAdminMenu($menuName)
- {
- return $this->translatorAdmin->transMenu($menuName);;
- }
-
- public function lcTransAdminAction($actionName)
- {
- return $this->translatorAdmin->transAction($actionName);;
- }
-
- public function lcTransAdminTitle($pageName, $entityClass = null, $params = [])
- {
- return $this->translatorAdmin->transTitle($pageName, $entityClass, $params) ;
- }
-
- public function lcLiip($path, $thumb = 'tile', $default = 'default.jpg')
- {
- if (substr($path, 0, 1) === '/') {
- $path = substr($path, 1);
- }
-
- if ($path) {
- $fileManagerFolder = substr($this->getFileManagerFolder(), 1);
-
- if (strpos($path, $fileManagerFolder) === false) {
- $path = $fileManagerFolder . '/' . $path;
- }
-
- if (file_exists($path)) {
- return $this->cacheManager->getBrowserPath($path, $thumb);
- }
- }
-
- return $this->cacheManager->getBrowserPath($this->getFileManagerFolder() . '/' . $default, $thumb);
- }
-
- function getTranslatedUrls()
- {
- $ret = array();
- $langs = $this->parameterBag->get('app.locales');
- $currentRoute = $this->requestStack->getCurrentRequest()->get('_route');
-
- $params = array_merge((array)$this->requestStack->getCurrentRequest()->get('_route_params'), $_GET);
-
- if ($currentRoute) {
- foreach ($langs as $lg) {
- $ret[$lg] = $this->router->generate($currentRoute, array_merge($params, array('_locale' => $lg)));
- }
- }
-
- return $ret;
- }
-
- public function getFileManagerFolder()
- {
- return $this->parameterBag->get('app.path_uploads');
- }
-
- public function homepageRoute()
- {
- return $this->parameterBag->get('lc_sov.homepage_route');
- }
-
- }
|