Spaces:
No application file
No application file
File size: 4,912 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
<?php
namespace Mautic\CoreBundle\Controller;
use Doctrine\Persistence\ManagerRegistry;
use Mautic\CoreBundle\Factory\MauticFactory;
use Mautic\CoreBundle\Factory\ModelFactory;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\UserHelper;
use Mautic\CoreBundle\Security\Permissions\CorePermissions;
use Mautic\CoreBundle\Service\FlashBag;
use Mautic\CoreBundle\Translation\Translator;
use Mautic\FormBundle\Helper\FormFieldHelper;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\HttpFoundation\RequestStack;
/**
* @deprecated 2.3 - to be removed in 3.0; use AbstractFormController instead
*/
class FormController extends AbstractStandardFormController
{
private string $deprecatedModelName = '';
private ?string $deprecatedPermissionBase = null;
private ?string $deprecatedRouteBase = null;
private ?string $deprecatedSessionBase = null;
private ?string $deprecatedTranslationBase = null;
private ?string $deprecatedTemplateBase = null;
private ?string $deprecatedMauticContent = null;
protected $activeLink;
/**
* @deprecated 2.3 - to be removed in 3.0; extend AbstractStandardFormController instead
*
* @param string $modelName The model for this controller
* @param string $permissionBase Permission base for the model (i.e. form.forms or addon.yourAddon.items)
* @param string $routeBase Route base for the controller routes (i.e. mautic_form or custom_addon)
* @param string $sessionBase Session name base for items saved to session such as filters, page, etc
* @param string $translationBase Language string base for the shared strings
* @param string $templateBase Template base (i.e. YourController:Default) for the view/controller
* @param string $activeLink Link ID to return via ajax response
* @param string $mauticContent Mautic content string to return via ajax response for onLoad functions
*/
protected function setStandardParameters(
string $modelName,
string $permissionBase,
string $routeBase,
string $sessionBase,
string $translationBase,
string $templateBase,
string $activeLink,
string $mauticContent
) {
$this->deprecatedModelName = $modelName;
$this->deprecatedPermissionBase = $permissionBase;
if (!str_starts_with($sessionBase, 'mautic.')) {
$sessionBase = 'mautic.'.$sessionBase;
}
$this->deprecatedSessionBase = $sessionBase;
$this->deprecatedRouteBase = $routeBase;
$this->deprecatedTranslationBase = $translationBase;
$this->activeLink = $activeLink;
$this->deprecatedMauticContent = $mauticContent;
$this->deprecatedTemplateBase = $templateBase;
}
/**
* @return mixed[]
*/
public function getViewArguments(array $args, $action): array
{
return $this->customizeViewArguments($args, $action);
}
/**
* @deprecated 2.6.0 to be removed in 3.0; use getViewArguments instead
*
* @return array
*/
public function customizeViewArguments($args, $action)
{
return $args;
}
protected function getModelName(): string
{
return $this->deprecatedModelName;
}
/**
* @return mixed
*/
protected function getJsLoadMethodPrefix()
{
return $this->deprecatedMauticContent;
}
/**
* @return mixed
*/
protected function getRouteBase()
{
return $this->deprecatedRouteBase;
}
/**
* @return mixed
*/
protected function getSessionBase($objectId = null)
{
return $this->deprecatedSessionBase ?? parent::getSessionBase($objectId);
}
/**
* @return mixed
*/
protected function getTemplateBase()
{
return $this->deprecatedTemplateBase;
}
/**
* @return mixed
*/
protected function getTranslationBase()
{
return $this->deprecatedTranslationBase;
}
/**
* @return mixed
*/
protected function getPermissionBase()
{
return $this->deprecatedPermissionBase;
}
public function __construct(FormFactoryInterface $formFactory, FormFieldHelper $fieldHelper, ManagerRegistry $managerRegistry, MauticFactory $factory, ModelFactory $modelFactory, UserHelper $userHelper, CoreParametersHelper $coreParametersHelper, EventDispatcherInterface $dispatcher, Translator $translator, FlashBag $flashBag, RequestStack $requestStack, CorePermissions $security)
{
parent::__construct($formFactory, $fieldHelper, $managerRegistry, $factory, $modelFactory, $userHelper, $coreParametersHelper, $dispatcher, $translator, $flashBag, $requestStack, $security);
}
}
|