定制 clthck/cakephp-jade 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

clthck/cakephp-jade

Composer 安装命令:

composer require clthck/cakephp-jade

包简介

Jade Template Engine Plugin for CakePHP 3

README 文档

README

Build Status Latest Stable Version Total Downloads License

Jade Template Engine Plugin for CakePHP 3

Powered by Tale Jade for PHP.

Installation

  1. Download Composer or update composer self-update.
  2. Run php composer.phar require clthck/cakephp-jade.

If Composer is installed globally, run

composer require clthck/cakephp-jade

Bootstrap

Add the following to your config/bootstrap.php to load the plugin.

Plugin::load('JadeView');

Application Wide Usage

Place the following to your AppController.php to load the JadeView class.

public function initialize()
{
    parent::initialize();

    $this->viewBuilder()
        ->className('JadeView.Jade')
        ->options(['pretty' => false]);
}

What if we need to load additional helpers for our JadeView instance? In this case, we can make AppView class inherit JadeView class:

...
use JadeView\View\JadeView;
...
class AppView extends JadeView
{
	...
	public function initialize()
	{
	    $this->viewOptions([
	        'pretty' => true
	    ]);

	    parent::initialize();
	    
	    $this->loadHelper('Form', [
	        'templates' => 'form_template'
	    ]);
	}
}

In Template File (.ctp.jade)

Use $view instead of $this.

= $view->Flash->render()

Usage Example of CakePHP javascript block

- $view->Html->scriptStart(['block' => true])
|
	$(function() {
		// Your js code goes here..
	});

- $view->Html->scriptEnd()

If you're using Sublime Text 2/3, you need to install cakephp-jade-tmbundle to make syntax highlighting work properly.

Language Syntax Reference

Please check jade.talesoft.io for syntax reference.

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 3
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固