<?php
/**
* This source file is available under GNU General Public License version 3 (GPLv3)
*
* Full copyright and license information is available in LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Asioso GmbH (https://www.asioso.com)
*
*/
namespace ImportBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Pimcore\Extension\Bundle\PimcoreBundleInterface;
class ImportBundle extends AbstractPimcoreBundle implements PimcoreBundleInterface
{
public function getNiceName()
{
return 'Asioso - PIMport Bundle';
}
/**
* Bundle description as shown in extension manager
*
* @return string
*/
public function getDescription()
{
return "";
}
public function getVersion()
{
return 'v0.1';
}
public function getJsPaths()
{
return [
"/bundles/import/js/pimcore/startup.js",
"/bundles/import/js/pimcore/notification/helper.js",
"/bundles/import/js/pimcore/configuration/components/mapping/datatarget/fieldCollection.js",
];
}
}