. * */ namespace Vvveb\Controller\Default; use Vvveb\Controller\Crud as CrudBase; #[\AllowDynamicProperties] class Crud extends CrudBase { protected $type = ''; function __construct() { $urlData = \Vvveb\System\Routes::getUrlData(); $this->type = $urlData['schema']; if ($this->type) { $this->module = $this->type; } } }