mckaygerhard
76a08633c1
* main api entry template * main controllers for routers * use bulma css for eye candy style * proposed minimal menu html structure into index * add those routes to modules ini * dont ignore css files we will not use nodejs
17 lines
261 B
PHP
17 lines
261 B
PHP
<?php
|
|
/**!
|
|
* @package skindb-webdb
|
|
* @filename lists.php controller
|
|
* @route >lists
|
|
* @version 1.0
|
|
*/
|
|
|
|
class lists_controller extends controller {
|
|
|
|
public function execute($post = null) {
|
|
$this->model->show();
|
|
return;
|
|
}
|
|
|
|
}
|