Spaces:
No application file
No application file
namespace Mautic\DynamicContentBundle\Controller\Api; | |
use Doctrine\Persistence\ManagerRegistry; | |
use Mautic\ApiBundle\Controller\CommonApiController; | |
use Mautic\ApiBundle\Helper\EntityResultHelper; | |
use Mautic\CoreBundle\Factory\MauticFactory; | |
use Mautic\CoreBundle\Factory\ModelFactory; | |
use Mautic\CoreBundle\Helper\AppVersion; | |
use Mautic\CoreBundle\Helper\CoreParametersHelper; | |
use Mautic\CoreBundle\Security\Permissions\CorePermissions; | |
use Mautic\CoreBundle\Translation\Translator; | |
use Mautic\DynamicContentBundle\Entity\DynamicContent; | |
use Mautic\DynamicContentBundle\Model\DynamicContentModel; | |
use Symfony\Component\EventDispatcher\EventDispatcherInterface; | |
use Symfony\Component\Form\FormFactoryInterface; | |
use Symfony\Component\HttpFoundation\RequestStack; | |
use Symfony\Component\Routing\RouterInterface; | |
/** | |
* @extends CommonApiController<DynamicContent> | |
*/ | |
class DynamicContentApiController extends CommonApiController | |
{ | |
public function __construct(CorePermissions $security, Translator $translator, EntityResultHelper $entityResultHelper, RouterInterface $router, FormFactoryInterface $formFactory, AppVersion $appVersion, RequestStack $requestStack, ManagerRegistry $doctrine, ModelFactory $modelFactory, EventDispatcherInterface $dispatcher, CoreParametersHelper $coreParametersHelper, MauticFactory $factory) | |
{ | |
$dynamicContentModel = $modelFactory->getModel('dynamicContent'); | |
\assert($dynamicContentModel instanceof DynamicContentModel); | |
$this->model = $dynamicContentModel; | |
$this->entityClass = DynamicContent::class; | |
$this->entityNameOne = 'dynamicContent'; | |
$this->entityNameMulti = 'dynamicContents'; | |
parent::__construct($security, $translator, $entityResultHelper, $router, $formFactory, $appVersion, $requestStack, $doctrine, $modelFactory, $dispatcher, $coreParametersHelper, $factory); | |
} | |
} | |