xmeltrut/wing-commander 问题修复 & 功能扩展

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

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

xmeltrut/wing-commander

最新稳定版本:1.2.0

Composer 安装命令:

composer require xmeltrut/wing-commander

包简介

Mustache template library wrapper for the Flight microframework

README 文档

README

Latest Stable Version License

Wing Commander is a Mustache wrapper for the Flight PHP microframework.

Installation

The easiest way to install Wing Commander is using Composer. Create a composer.json file in the root of your project and require Wing Commander.

{
    "require": {
        "xmeltrut/wing-commander": "*"
    }
}

Then run the install command, and this will install all dependencies - including Flight and Mustache.

composer install

Usage

A basic usage would look like the following.

require 'vendor/autoload.php';

WingCommander::init();

Flight::route('/', function(){
    Flight::view()->set("someVar", "Hello, World!");
    Flight::render("homepage", array(), "body");
    Flight::render("layout", array("title" => $pageTitle));
});

Flight::start();

By default, it will look for Mustache templates in the ./templates directory of your project. You can change this by calling the setTemplatePath method.

Flight::view()->setTemplatePath("./application/templates");

Lets create homepage.mustache.

<p>{{someVar}}</p>

A layout to wrap it in too - layout.mustache.

<p>Wing Commander says:</p>
{{{body}}}

Bringing it all together, you can use it like you would use the standard Flight view component.

Flight::view()->set("someVar", "Hello, World!");
Flight::render("homepage", array(), "body");
Flight::render("layout", array("title" => $pageTitle));

Further Reading

统计信息

  • 总下载量: 603
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 9
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2012-11-13