33 lines
701 B
PHP
33 lines
701 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Provider extends Provider_Controller {
|
|
|
|
public function index() {
|
|
$data = array();
|
|
$this->renderProviderSecurePage('dash', $data);
|
|
}
|
|
|
|
public function alerts() {
|
|
$data = array();
|
|
$this->renderProviderSecurePage('dash', $data);
|
|
}
|
|
|
|
public function todo() {
|
|
$data = array();
|
|
$this->renderProviderSecurePage('dash', $data);
|
|
}
|
|
|
|
public function tasks() {
|
|
$data = array();
|
|
$this->renderProviderSecurePage('dash', $data);
|
|
}
|
|
|
|
public function calendar() {
|
|
$data = array();
|
|
$this->renderProviderSecurePage('dash', $data);
|
|
}
|
|
|
|
}
|