Beispiel #1
0
 public function embeddedDashboard()
 {
     $db = new SampleDashboard();
     $db->setActionPath("/apps/php_mvc/cakephp/my/dashboardAction");
     $this->set('db', $db);
     $this->render("embeddedDashboard");
 }
Beispiel #2
0
 public function index()
 {
     $this->load->helper('url');
     $db = new SampleDashboard();
     $db->setActionPath("/apps/php_mvc/rfci/index.php/welcome/dashboardAction");
     $data = array('db' => $db);
     $this->load->view('welcome_message', $data);
 }