class MY_Controller extends CI_Controller
{
public $data = array();
function __construct()
{
parent::__construct();
if($this->session->userdata('group_id') == FALSE) {
redirect('user/login');
}else {
//How download sessions?
//How Get the session given group_id?
//How Redirect to the appropriate controller?
if grup_id == 1 then goto administrator/dashboard
//if not exist grup id then goto /index
}
}
}
CI中的PHP框架笨會議PHP的
我很想用儀表板登錄。管理員,經理和用戶 –
看看 - http://stackoverflow.com/help/how-to-ask –
歡迎來到SO。 請閱讀[我可以問哪些主題](http://stackoverflow.com/help/on-topic) 和[如何提出一個好問題](http://stackoverflow.com/help/how-to - 問) 和[完美的問題](http://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-question/) 以及如何創建[最小,完整和可驗證的例子] (http://stackoverflow.com/help/mcve) SO是**不是一個免費的編碼或代碼轉換或調試或教程或庫查找服務** 您還必須表明,你已經努力解決你自己的問題。 – RiggsFolly