13 lines
173 B
PHP
13 lines
173 B
PHP
<?php
|
|
namespace admin\view;
|
|
|
|
class FileManager {
|
|
|
|
public function showFileManager()
|
|
{
|
|
$tpl = new \Savant3;
|
|
return $tpl -> fetch( 'other/filemanager' );
|
|
}
|
|
}
|
|
?>
|