コード例 #1
0
ファイル: Brand.php プロジェクト: margery/thelia
 /**
  * Toggle Brand visibility
  *
  * @param BrandToggleVisibilityEvent $event
  */
 public function toggleVisibility(BrandToggleVisibilityEvent $event)
 {
     $brand = $event->getBrand();
     $brand->setDispatcher($event->getDispatcher())->setVisible(!$brand->getVisible())->save();
     $event->setBrand($brand);
 }