芝麻web文件管理V1.00
编辑当前文件:/home/asmplong/www/ancien-site-2019/site/administrator/components/com_banners/models/download.php
_context.'.basename'),'__SITE__','cookie'); $this->setState('basename',$basename); $compressed = JRequest::getInt(JUtility::getHash($this->_context.'.compressed'),1,'cookie'); $this->setState('compressed',$compressed); } /** * Method to get the record form. * * @param array $data Data for the form. * @param boolean $loadData True if the form is to load its own data (default case), false if not. * * @return mixed A JForm object on success, false on failure * @since 1.6 */ public function getForm($data = array(), $loadData = true) { // Get the form. $form = $this->loadForm('com_banners.download', 'download', array('control' => 'jform', 'load_data' => $loadData)); if (empty($form)) { return false; } return $form; } /** * Method to get the data that should be injected in the form. * * @return mixed The data for the form. * @since 1.6 */ protected function loadFormData() { return array( 'basename' => $this->getState('basename'), 'compressed' => $this->getState('compressed') ); } }