WIDGET DASHBOARD

Class Dashboard cung cấp các method thao tác với widget dashboard

#Add

Thêm một widget mới vào dashboard

public static function Dashboard::add($id, $title, $args)

$id (string) widget dashbord id

$title (string) tiêu đề widget dashbord

$args (array) các tham số widget dashbord

[callback] (string) function thực hiện hiển thị dữ liệu dashboard

[col] (number) độ rộng widget (từ 1 đến 12)

[icon] (string) icon widget

Dashboard::add('quick_access','Quick access', array('callback' => 'dashboard_quick_access', 'col' => 12, 'icon' => '<i class="fad fa-sitemap" style="background-color: #214171"></i>'));

#Has

Kiểm tra widget đã được đăng ký hay chưa

public static function Dashboard::has($id)
Dashboard::has('quick_access');
// True

#Get

Lấy thông tin widget

public static function Dashboard::get($id)

#Get All

Lấy toàn bộ widget dashboard

public static function Dashboard::getAll()

#Remove

Xóa widget dashboard

public static function Dashboard::remove($id)