Files
pomysloweprezenty.pl/autoload/admin/view/class.ShopAttribute.php
2024-10-23 12:55:46 +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' );
}
}