<?php
namespace ActivePdfReactorBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class ActivePdfReactorBundle extends AbstractPimcoreBundle
{
const COMPOSER_PACKAGE_NAME = "activepublishing/bundle-active-pdfreactor";
const BUNDLE_ID = "ActivePdfReactorBundle";
const BUNDLE_NAME = "ActivePdfReactorBundle";
const BUNDLE_DESCRIPTION = "ActivePublishing's PdfReactor Bundle by Active Publishing©";
const BUNDLE_VERSION = "1.1.9";
const BUNDLE_REVISION = 1;
const PIMCORE_MIN_VERSION = "10.0.0";
public function getJsPaths()
{
return [
'/bundles/activepdfreactor/js/pimcore/startup.js',
'/bundles/activepdfreactor/js/pimcore/configuration.js',
'/bundles/activepdfreactor/js/pimcore/common.js',
'/bundles/activepdfreactor/js/pimcore/pdf_preview.js'
];
}
/**
* @return string
*/
protected function getComposerPackageName(): string
{
return self::COMPOSER_PACKAGE_NAME;
}
/**
* @return string
*/
public function getNiceName()
{
return self::BUNDLE_NAME;
}
/**
* @return string
*/
public function getDescription()
{
return self::BUNDLE_DESCRIPTION;
}
/**
* @return string
*/
public function getVersion()
{
return self::BUNDLE_VERSION;
}
}