| Current Path : /home/rtorresani/www/vendor/magento/module-widget/Block/Adminhtml/Widget/Instance/Edit/ |
| Current File : //home/rtorresani/www/vendor/magento/module-widget/Block/Adminhtml/Widget/Instance/Edit/Form.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Widget Instance edit form
*
* @author Magento Core Team <core@magentocommerce.com>
*/
namespace Magento\Widget\Block\Adminhtml\Widget\Instance\Edit;
class Form extends \Magento\Backend\Block\Widget\Form\Generic
{
/**
* Prepare form before rendering HTML
*
* @return $this
*/
protected function _prepareForm()
{
/** @var \Magento\Framework\Data\Form $form */
$form = $this->_formFactory->create(
['data' => ['id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post']]
);
$form->setUseContainer(true);
$this->setForm($form);
return parent::_prepareForm();
}
}