<?phpnamespace DestiSuiteBundle;use Pimcore\Extension\Bundle\AbstractPimcoreBundle;class DestiSuiteBundle extends AbstractPimcoreBundle{ public function getJsPaths() { $return = array(); try { $path = \Pimcore::getContainer()->getParameter('ds_pimcore_admin_setting_js_path'); if (!empty($path)) { $return[] = $path; } } catch (\Exception $ex) { } $return[] = '/bundles/destisuite/js/pimcore/startup_v2.js'; return $return; }}