Files
shopPRO/autoload/admin/view/class.ShopAttribute.php
2024-10-23 13:44:50 +02:00

14 lines
317 B
PHP

<?php
namespace admin\view;
class ShopAttribute
{
public static function values_edit( $attribute, $values, $languages )
{
$tpl = new \Tpl;
$tpl -> attribute = $attribute;
$tpl -> values = $values;
$tpl -> languages = $languages;
return $tpl -> render( 'shop-attribute/values-edit' );
}
}