/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Form
NameSizeModeActions
ChoiceProvider/-0755rm
DTO/-0755rm
IdentifiableObject/-0755rm
ConfigurableFormChoiceProviderInterface.php14140644editdlrm
FormChoiceAttributeProviderInterface.php14420644editdlrm
FormChoiceProviderInterface.php13500644editdlrm
FormDataProviderInterface.php16660644editdlrm
FormHandler.php39760644editdlrm
FormHandlerInterface.php18160644editdlrm
Handler.php37450644editdlrm
MultiStoreSettingsFormDataProviderInterface.php15600644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Form/FormHandlerInterface.php (1816B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Form; use Symfony\Component\Form\FormInterface; /** * Manage Symfony forms outside the controllers. */ interface FormHandlerInterface { /** * @return FormInterface */ public function getForm(); /** * Describe what need to be done on saving the form: mostly persists the data * using a form data provider, but it's also the right place to dispatch events/log something. * * @param array $data data retrieved from form that need to be persisted in database * * @throws \Exception if the data can't be handled * * @return array $errors if data can't persisted an array of errors messages */ public function save(array $data); }