Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lines
526B

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Product;
  3. use Lc\CaracoleBundle\Model\Product\ProductCategoryInterface;
  4. class ProductCategorySolver
  5. {
  6. public function isOnline(ProductCategoryInterface $productCategory)
  7. {
  8. if ($productCategory->getParent()) {
  9. if ($productCategory->getStatus() && $productCategory->getParent()->getStatus()) {
  10. return true;
  11. }
  12. } elseif ($productCategory->getStatus()) {
  13. return true;
  14. }
  15. return false;
  16. }
  17. }