meraproject/module/ui/input/video/model.php

17 lines
320 B
PHP
Raw Normal View History

<?
namespace ui\input;
class Video extends Input {
public function render(array $opt = array()): string
{
if(file_exists($file = dirname(__FILE__).'/views/'.$this->theme.'.php')) {
ob_start();include($file);return ob_get_clean();
} else {
return '';
}
}
}