nitra/e-commerce-admin-bannersbundle

此包已被弃用且不再维护。未建议替代包。

nep admin banners bundle

维护者

详细信息

bitbucket.org/nitra/nep-admin-banners

安装: 176

依赖者: 0

建议者: 0

安全: 0

类型:symfony-bundle

dev-master 2014-11-14 09:11 UTC

This package is auto-updated.

Last update: 2018-04-08 17:29:01 UTC


README

描述

该捆绑包旨在

  • 创建和编辑横幅

连接

  • composer.json
{
    ...   
    "require": {
        ...
        "nitra/e-commerce-admin-bannersbundle": "dev-master",
        ...
    }
    ...
}
  • app/AppKernel.php
<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    //...
    public function registerBundles()
    {
        //...
        $bundles = array(
            //...
            new Nitra\BannersBundle\NitraBannersBundle(),
            //...
        );
        //...
        return $bundles;
    }
    //...
}