Files
it.vidok.com/autoload/admin/view/class.Update.php
2024-11-17 19:56:17 +01:00

14 lines
247 B
PHP

<?php
namespace admin\view;
class Update
{
public static function main_view()
{
$tpl = new \Tpl;
$tpl -> ver = \S::get_version();
$tpl -> new_ver = \S::get_new_version();
return $tpl -> render( 'update/main-view' );
}
}