<?php
namespace IndabaSolutions\CSRepresentationBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
class IndabaSolutionsCSRepresentationBundle extends AbstractPimcoreBundle
{
use PackageVersionTrait;
protected function getComposerPackageName(): string
{
return 'indabasolutions/csrepresentationbundle';
}
public function getJsPaths()
{
return [
'/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStorePropertiesPanel.js',
'/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreKeySelectionWindow.js',
'/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreKeyDefinitionWindow.js',
'/bundles/indabasolutionscsrepresentation/js/pimcore/classificationStoreGroupsPanel.js',
];
}
}