Files
FHC-Core/application/controllers/system/TestUDF.php
T
2017-04-27 19:06:36 +02:00

29 lines
509 B
PHP

<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
class TestUDF extends VileSci_Controller
{
public function __construct()
{
parent::__construct();
// Loads the widget library
$this->load->library('WidgetLib');
}
/**
*
*/
public function index()
{
$data = array (
'schema' => 'public',
'table' => 'tbl_person',
'field' => 'schuhgroesse',
'selected' => array(1, 2)
);
$this->load->view('system/testudf', $data);
}
}