<?php
namespace Elements\Bundle\CmsToolsBundle;
use Elements\Bundle\BlogBundle\Tools\Installer;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Composer\InstalledVersions;
class ElementsCmsToolsBundle extends AbstractPimcoreBundle
{
public function getVersion()
{
$version = InstalledVersions::getVersion('elements/cms-tools-bundle');
return $version;
}
public function getDescription()
{
return 'Collection of all CMS project Helpers and Services';
}
}