13 lines
158 B
PHP
13 lines
158 B
PHP
<?php
|
|
namespace view;
|
|
|
|
class Settings {
|
|
|
|
public function drawSettings()
|
|
{
|
|
$tpl = new \Savant3;
|
|
return $tpl -> fetch( 'other/settings' );
|
|
}
|
|
}
|
|
?>
|