19 lines
319 B
PHP

<?php
/**!
* @package minenux-skindb-webdb
* @filename index.php model
* @route >index
* @version 1.0
*/
class skins_model extends model {
public function notFound() {
$this->borrow('notFound')->show();
}
public function show() {
$httpcode = 200;
include(DIR_VIEWS."index.php");
}
}