芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/administrator/components/com_banners/src/View/Download/HtmlView.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Banners\Administrator\View\Download; \defined('_JEXEC') or die; use Exception; use Joomla\CMS\Form\Form; use Joomla\CMS\MVC\View\GenericDataException; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; use Joomla\Component\Banners\Administrator\Model\DownloadModel; /** * View class for download a list of tracks. * * @since 1.6 */ class HtmlView extends BaseHtmlView { /** * The Form object * * @var Form * @since 1.6 */ protected $form; /** * Display the view * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return void * * @since 1.6 * * @throws Exception */ public function display($tpl = null): void { /** @var DownloadModel $model */ $model = $this->getModel(); $this->form = $model->getForm(); // Check for errors. if (count($errors = $this->get('Errors'))) { throw new GenericDataException(implode("\n", $errors), 500); } parent::display($tpl); } }