<?php
namespace Optiweb\FunctionsBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class OptiwebFunctionsBundle extends AbstractPimcoreBundle
{
/**
* @return array
*/
public function getJsPaths()
{
return [
'/bundles/optiwebfunctions/js/pimcore/startup.js',
'/bundles/optiwebfunctions/js/pimcore/object/classes/data/attributeSet.js',
'/bundles/optiwebfunctions/js/pimcore/object/tags/attributeSet.js',
'/bundles/optiwebfunctions/js/pimcore/object/classes/data/attributeSetInputs.js',
'/bundles/optiwebfunctions/js/pimcore/object/tags/attributeSetInputs.js',
'/bundles/optiwebfunctions/js/pimcore/helpers/generic-grid.js'
];
}
/**
* @return array
*/
public function getCssPaths()
{
return [];
}
}