<?php
namespace PrintBundle;
use ActiveWireframeBundle\Service\Installer;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class PrintBundle extends AbstractPimcoreBundle
{
const COMPOSER_PACKAGE_NAME = "activepublishing/bundle-print";
const BUNDLE_ID = "PrintBundle";
const BUNDLE_NAME = "PrintBundle";
const BUNDLE_DESCRIPTION = "print Bundle by Active Publishing©";
const BUNDLE_VERSION = "1.0.0";
const BUNDLE_REVISION = 1;
const PIMCORE_MIN_VERSION = "10.0.0";
public function getJsPaths() : array
{
return [
'/bundles/print/js/pimcore/startup.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;
}
}