mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 08:34:29 +00:00
remove unused file
This commit is contained in:
@@ -1,86 +0,0 @@
|
|||||||
<?php
|
|
||||||
defined('BASEPATH') || exit('No direct script access allowed');
|
|
||||||
/**
|
|
||||||
* Description of Widget
|
|
||||||
*
|
|
||||||
* @author chris
|
|
||||||
*/
|
|
||||||
class Dashboard extends Auth_Controller
|
|
||||||
{
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct(
|
|
||||||
array(
|
|
||||||
'index' => 'dashboard/admin:r',
|
|
||||||
'create' => 'dashboard/admin:rw',
|
|
||||||
'update' => 'dashboard/admin:rw',
|
|
||||||
'delete' => 'dashboard/admin:rw'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
$this->load->library('dashboard/DashboardLib', null, 'DashboardLib');
|
|
||||||
$this->load->model('dashboard/Dashboard_model', 'DashboardModel');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
$result = $this->DashboardModel->load();
|
|
||||||
|
|
||||||
if (isError($result)) {
|
|
||||||
http_response_code(404);
|
|
||||||
$this->terminateWithJsonError([
|
|
||||||
'error' => getError($result)
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->outputJsonSuccess(getData($result) ?: []);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create()
|
|
||||||
{
|
|
||||||
$input = $this->getPostJSON();
|
|
||||||
|
|
||||||
$result = $this->DashboardModel->insert($input);
|
|
||||||
|
|
||||||
if (isError($result)) {
|
|
||||||
http_response_code(404);
|
|
||||||
$this->terminateWithJsonError([
|
|
||||||
'error' => getError($result)
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->outputJsonSuccess(getData($result) ?: []);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update()
|
|
||||||
{
|
|
||||||
$input = $this->getPostJSON();
|
|
||||||
|
|
||||||
$result = $this->DashboardModel->update($input->dashboard_id, $input);
|
|
||||||
|
|
||||||
if (isError($result)) {
|
|
||||||
http_response_code(404);
|
|
||||||
$this->terminateWithJsonError([
|
|
||||||
'error' => getError($result)
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->outputJsonSuccess(getData($result) ?: []);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete()
|
|
||||||
{
|
|
||||||
$input = $this->getPostJSON();
|
|
||||||
|
|
||||||
$result = $this->DashboardModel->delete($input->dashboard_id);
|
|
||||||
|
|
||||||
if (isError($result)) {
|
|
||||||
http_response_code(404);
|
|
||||||
$this->terminateWithJsonError([
|
|
||||||
'error' => getError($result)
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->outputJsonSuccess(getData($result) ?: []);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user