mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 01:42:17 +00:00
Dashboard Test V1
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
class Dashboard_model extends DB_Model
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->dbTable = "( WITH vals (dashboard_id, name) AS (VALUES
|
||||
(0,'CIS'),
|
||||
(1,'PV21')
|
||||
) SELECT * FROM vals ) AS tbl_dashboard";
|
||||
$this->pk = 'dashboard_id';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user