<?php
namespace IndesignExportBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class IndesignExportBundle extends AbstractPimcoreBundle
{
const COMPOSER_PACKAGE_NAME = "activepublishing/bundle-indesign-export";
const BUNDLE_NAME = "IndesignExport";
const BUNDLE_ID = "IndesignExportBundle";
const BUNDLE_DESCRIPTION = "Indesign export by Active Publishing©";
const BUNDLE_VERSION = "1.0.9";
const PIMCORE_MIN_VERSION = "10.0.0";
/**
* @return array
*/
public function getJsPaths() : array {
return [
'/bundles/indesignexport/js/pimcore/startup.js',
'/bundles/indesignexport/js/pimcore/context/Context.js',
'/bundles/indesignexport/js/pimcore/form/FormHandler.js',
'/bundles/indesignexport/js/pimcore/form/FormContentGenerator.js',
];
}
/**
* @return string
*/
protected function getComposerPackageName() : string {
return self::COMPOSER_PACKAGE_NAME;
}
/**
* @return string
*/
public function getNiceName() : string {
return self::BUNDLE_NAME;
}
/**
* @return string
*/
public function getDescription() : string {
return self::BUNDLE_DESCRIPTION;
}
/**
* @return string
*/
public function getVersion() : string {
return self::BUNDLE_VERSION;
}
// /**
// * {@inheritdoc}
// */
// public function getInstaller() : InstallerService {
// return $this->container->get(InstallerService::class);
// }
}