dbms_primeidc/extdbms/lib/Controller/ExtraService.php
2025-03-20 18:38:28 +09:00

19 lines
360 B
PHP

<?php
namespace lib\Controller;
use lib\Core\Controller;
class ExtraService extends Controller
{
public function __construct()
{
parent::__construct();
} //
public function execute($code)
{
$this->view->results = $this->getModel("Service")->getExtras($code);
return $this->render('extraservice');
}
} //Class