Files
rank24.pl/autoload/view/class.Settings.php
2024-12-12 15:33:18 +01:00

13 lines
158 B
PHP

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