mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
29 lines
477 B
PHP
29 lines
477 B
PHP
<?php
|
|
|
|
/**
|
|
* Preserved for backward compatibility
|
|
*
|
|
* @deprecated
|
|
*/
|
|
class AdminAdminView extends Admin
|
|
{
|
|
/**
|
|
* Make the admin menu.
|
|
*
|
|
* @deprecated
|
|
*/
|
|
public function makeGnbUrl($module = 'admin')
|
|
{
|
|
Rhymix\Modules\Admin\Controllers\Base::getInstance()->loadAdminMenu($module);
|
|
}
|
|
|
|
/**
|
|
* Display FTP Configuration(settings) page
|
|
*
|
|
* @deprecated
|
|
*/
|
|
public function dispAdminConfigFtp()
|
|
{
|
|
throw new Rhymix\Framework\Exceptions\FeatureDisabled;
|
|
}
|
|
}
|