11 lines
253 B
PHP
11 lines
253 B
PHP
<?php
|
|
|
|
use KupShop\KupShopBundle\Util\Compat\ServiceContainer;
|
|
|
|
function smarty_function_asset($params, &$smarty)
|
|
{
|
|
$packages = ServiceContainer::getService('assets.packages');
|
|
|
|
return $packages->getPackage('webpack')->getUrl($params['url']);
|
|
}
|