evercodelab/banner-bundle

该软件包已被废弃,且不再维护。未建议替代软件包。

Symfony2 扩展包,用于管理网站横幅

安装数: 1,512

依赖项: 0

建议者: 0

安全: 0

星标: 4

关注者: 16

分支: 4

开放问题: 7

类型:symfony-bundle

dev-master 2013-05-23 20:45 UTC

This package is not auto-updated.

Last update: 2018-06-29 09:54:22 UTC


README

安装

使用 Composer 安装

./composer require evercodelab/banner-bundle

将软件包添加到 AppKernel.php

$bundles = array(
    //...
    new Evercode\Bundle\BannerBundle\EvercodeBannerBundle(),
);

将其添加到 routing.yml

EvercodeBannerBundle:
    resource: "@EvercodeBannerBundle/Controller/"
    type:     annotation

在模板中添加以下内容

{% render 'EvercodeBannerBundle:Banner:view' with {'place': 'Main_horizontal'} %}

您可以选择指定一个过滤器,使用 AvalancheImagineBundle 自动裁剪/调整大小/压缩图片

{% render 'EvercodeBannerBundle:Banner:view' with {'place': 'Main_horizontal', 'filter': 'banner_main_horizontal'} %}

有关如何设置过滤器的信息,请参阅 https://github.com/avalanche123/AvalancheImagineBundle#basic-usage