This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Controllers/Settings/GeneralController.php
2016-03-28 03:18:59 +02:00

32 lines
528 B
PHP

<?php
/**
* Holds the general settings section controller.
*
* @package Sakura
*/
namespace Sakura\Controllers\Settings;
/**
* General settings.
*
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class GeneralController extends Controller
{
public function home()
{
return $this->go('general.home');
}
public function profile()
{
return $this->go('general.profile');
}
public function options()
{
return $this->go('general.options');
}
}