<?php
namespace ConcreteControllerSinglePageDashboardSystem;
use ConcreteCorePageControllerDashboardPageController;
class Backup extends DashboardPageController {
/**
* Dashboard view - automatically redirects to a default
* page in the category
*
* @return void
*/
public function view() {
$this->redirect('/dashboard/system/backup/backup');
}
}
?>