12 lines
196 B
PHP
12 lines
196 B
PHP
|
<?php
|
||
|
|
||
|
defined( '_VALID_MOS' ) or die( 'Restricted access' );
|
||
|
|
||
|
require_once( $mainframe->getPath( 'toolbar_html' ) );
|
||
|
|
||
|
switch ( $task ) {
|
||
|
default:
|
||
|
TOOLBAR_guildmaster::_DEFAULT();
|
||
|
break;
|
||
|
}
|
||
|
?>
|