Files
inwestprofil.eu/autoload/admin/view/class.SeoAdditional.php
Roman Pyrih 197675d958 first commit
2026-02-03 13:33:04 +01:00

18 lines
354 B
PHP

<?php
namespace admin\view;
class SeoAdditional
{
public static function element_edit( $element = '' )
{
$tpl = new \Tpl;
$tpl -> element = $element;
return $tpl -> render( 'seo-additional/element-edit' );
}
public static function main_view()
{
$tpl = new \Tpl;
return $tpl -> render( 'seo-additional/main-view' );
}
}