knplabs/rad-view-renderer 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

knplabs/rad-view-renderer

最新稳定版本:v2.1.0

Composer 安装命令:

composer require knplabs/rad-view-renderer

包简介

README 文档

README

Unfortunately we decided to not maintain this project anymore (see why). If you want to mark another package as a replacement for this one please send an email to hello@knplabs.com.

Rad view renderer

Allow to guess a view when the controller does not return a Response.

Build Status Scrutinizer Code Quality Latest Stable Version Total Downloads Latest Unstable Version License

Installation

Install the library:

$ composer require knplabs/rad-view-renderer

If you are using Symfony, add the bundle inside your AppKernel.php:

$bundles = array(
    // ...
    new Knp\Rad\ViewRenderer\Bundle\ViewRendererBundle(),
);

Usage

Let's take the following controller:

namespace App\Controller;

class TestController
{
    public function someAction()
    {
        return ['foo' => 'bar'];
    }
}

By default the rad view renderer will take a look of the request content type in order to guess wich kind of render it will use. It exists many kind of renderer that can display many content types.

You can disable some native renderers using the renderers parameter in your config.yml:

knp_rad_view_renderer:
    renderers: [controller, twig]

The twig renderer

One of the most useful renderer, it takes the controller class in order to guess the template to display. For example:

App\Controller\TestController::someAction => @App/Resources/views/Test/some.%format%.twig

统计信息

  • 总下载量: 44.45k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 31
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-08