em = $em; $this->security = $security; $this->merchantUtils = $merchantUtils; $this->formFactory = $formFactory; $this->requestStack = $requestStack; $this->productCategoryRepository = $this->em->getRepository($this->em->getClassMetadata(ProductCategoryInterface::class)->getName()); $this->merchantRepository = $this->em->getRepository($this->em->getClassMetadata(MerchantInterface::class)->getName()); $this->productFamilyRepository = $this->em->getRepository($this->em->getClassMetadata(ProductFamilyInterface::class)->getName()); $this->liipCacheHelper = $liipCacheHelper; $this->parameterBag = $parameterBag; $this->kernel = $kernel; } public function getFunctions() { return array( new TwigFunction('get_product_categories', [$this, 'getProductCategories']), new TwigFunction('get_form_newsletter', [$this, 'getFormNewsletter']), new TwigFunction('get_merchants', [$this, 'getMerchants']), new TwigFunction('lc_liip', [$this, 'lcLiip']), new TwigFunction('get_file_manager_folder', [$this, 'getFileManagerFolder']), ); } public function getFilters() { return [ new TwigFilter('format_price', [$this, 'formatPrice']), new TwigFilter('lc_liip', [$this, 'lcLiip']), new TwigFilter('lc_cache', [$this, 'lcCache']), ]; } public function lcCache($file){ $cacheTime = filemtime($this->kernel->getProjectDir().'/public'.$file); if($cacheTime){ return $file.'?c='.$cacheTime; }else{ return $file."?c=0"; } } 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->liipCacheHelper->getBrowserPath($path, $thumb); } } return $this->liipCacheHelper->getBrowserPath($this->getFileManagerFolder() . '/' . $default, $thumb); } /** * Retourne le chemin vers le dossier d'uploads de responsiveFilemanager * * @return string */ public function getFileManagerFolder() { return $this->parameterBag->get('app.path.images'); } public function getProductCategories() { $categories = $this->productCategoryRepository->findAllParents(false); return $categories; } public function getFormNewsletter() { $form = $this->formFactory->create(NewsletterType::class); return $form->createView(); } public function formatPrice($price) { $price = number_format($price, 2, ',', ' '); $price = $price . ' €'; return $price; } public function getMerchants() { return $this->merchantRepository->findAll(); } }