1st preview

This commit is contained in:
Paolo
2017-05-09 18:14:18 +02:00
parent a5aea17fa6
commit e143aa8815
9 changed files with 178 additions and 145 deletions
+8 -1
View File
@@ -10,6 +10,9 @@ class TestUDF extends VileSci_Controller
// Loads the widget library
$this->load->library('WidgetLib');
//
$this->load->model('person/Person_model', 'PersonModel');
}
/**
@@ -17,7 +20,11 @@ class TestUDF extends VileSci_Controller
*/
public function index()
{
$data = array();
$person = $this->PersonModel->load(1);
$data = array(
'udfs' => $this->PersonModel->getUDFs()
);
$this->load->view('system/testudf', $data);
}