Add option to save changelog for files

This commit is contained in:
Kijin Sung 2019-09-13 23:57:21 +09:00
parent ee7f11b0f1
commit 2cd2d0528b
8 changed files with 76 additions and 0 deletions

View file

@ -240,6 +240,22 @@ class fileAdminView extends file
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('download_config');
}
/**
* Other config screen
*
* @return Object
*/
function dispFileAdminOtherConfig()
{
$oFileModel = getModel('file');
$config = $oFileModel->getFileConfig();
Context::set('config',$config);
// Set a template file
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('other_config');
}
}
/* End of file file.admin.view.php */
/* Location: ./modules/file/file.admin.view.php */