Browse Source

Frontend : switch merchant

reduction
Guillaume 4 years ago
parent
commit
6e26cdc111
3 changed files with 22 additions and 8 deletions
  1. +1
    -1
      ShopBundle/Controller/Admin/MerchantController.php
  2. +5
    -0
      ShopBundle/Services/Utils.php
  3. +16
    -7
      ShopBundle/Twig/FrontendTwigExtension.php

+ 1
- 1
ShopBundle/Controller/Admin/MerchantController.php View File

@@ -40,7 +40,7 @@ class MerchantController extends AdminController
$newMerchantConfig = new $classMerchantConfig ;
$newMerchantConfig
->setName($key)
->setMerchant($this->security->getUser()->getMerchant()) ;
->setMerchant($entity) ;
if(isset($option['default'])) {
$newMerchantConfig->setValue($option['default']) ;
}

+ 5
- 0
ShopBundle/Services/Utils.php View File

@@ -143,4 +143,9 @@ class Utils
return $this->em->getRepository($class)->findOneByDevAlias($devAlias) ;
}

public function isServerLocalhost()
{
return in_array($_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']) ;
}

}

+ 16
- 7
ShopBundle/Twig/FrontendTwigExtension.php View File

@@ -2,6 +2,7 @@

namespace Lc\ShopBundle\Twig;

use App\Repository\HubRepository;
use App\Services\GlobalParam;
use Doctrine\ORM\EntityManagerInterface;
use Lc\ShopBundle\Form\Frontend\NewsletterType;
@@ -16,16 +17,18 @@ class FrontendTwigExtension extends AbstractExtension
{
protected $em ;
protected $security ;
protected $repositoryProductCategory ;
protected $globalParam ;
protected $formFactory ;
protected $productCategoryRepository ;
protected $hubRepository ;

public function __construct(EntityManagerInterface $em, Security $security, ProductCategoryRepository $repositoryProductCategory,
GlobalParam $globalParam, FormFactoryInterface $formFactory)
public function __construct(EntityManagerInterface $em, Security $security, ProductCategoryRepository $productCategoryRepository,
GlobalParam $globalParam, FormFactoryInterface $formFactory, HubRepository $hubRepository)
{
$this->em = $em ;
$this->security = $security ;
$this->repositoryProductCategory = $repositoryProductCategory ;
$this->productCategoryRepository = $productCategoryRepository ;
$this->hubRepository = $hubRepository ;
$this->globalParam = $globalParam ;
$this->formFactory = $formFactory ;
}
@@ -35,19 +38,20 @@ class FrontendTwigExtension extends AbstractExtension
return array(
new TwigFunction('get_product_categories', [$this, 'getProductCategories']),
new TwigFunction('get_form_newsletter', [$this, 'getFormNewsletter']),
new TwigFunction('get_merchants', [$this, 'getMerchants']),
);
}

public function getFilters()
{
return [
new TwigFilter('format_price', [$this, 'format_price']),
new TwigFilter('format_price', [$this, 'formatPrice']),
];
}

public function getProductCategories()
{
$categories = $this->repositoryProductCategory->findAllParents($this->globalParam->getCurrentMerchant()) ;
$categories = $this->productCategoryRepository->findAllParents($this->globalParam->getCurrentMerchant()) ;
return $categories ;
}

@@ -57,7 +61,7 @@ class FrontendTwigExtension extends AbstractExtension
return $form->createView() ;
}

public function format_price($price)
public function formatPrice($price)
{
$price = number_format($price, 2) ;
$price = str_replace('.',',',$price) ;
@@ -65,4 +69,9 @@ class FrontendTwigExtension extends AbstractExtension
return $price ;
}

public function getMerchants()
{
return $this->hubRepository->findAll() ;
}

}

Loading…
Cancel
Save