定制 esquire900/yii2-giiant-twig 二次开发

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

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

esquire900/yii2-giiant-twig

最新稳定版本:0.1.0

Composer 安装命令:

composer require esquire900/yii2-giiant-twig

包简介

Twig templates for the Yii 2 Giiant plugin

README 文档

README

Twig templates for the Giiant Yii2 code generator

What is it?

This extension provides templates for the CRUD models from Giiant in the twig templating language. There were no templates available for twig yet in the yii2 context, so this should save a lot of time for those wanting to work with twig :)

That means a form will not look like this:

<?php $form = ActiveForm::begin(['id' => 'contact-form']); ?>
    <?= $form->field($model, 'name') ?>
    <?= $form->field($model, 'email') ?>
    <?= $form->field($model, 'subject') ?>
    <?= $form->field($model, 'body')->textArea(['rows' => 6]) ?>
    <?= $form->field($model, 'verifyCode')->widget(Captcha::className(), [
        'template' => '<div class="row"><div class="col-lg-3">{image}</div><div class="col-lg-6">{input}</div></div>',
    ]) ?>
    <div class="form-group">
        <?= Html::submitButton('Submit', ['class' => 'btn btn-primary', 'name' => 'contact-button']) ?>
    </div>
<?php ActiveForm::end(); ?>

But more like this

{% set form = active_form_begin({
	'action': ['index'],
	'method': 'get'
}) %}

{{ form.field(model, 'id') }}
{{ form.field(model, 'name') }}
{{ form.field(model, 'owner_name') }}
{{ form.field(model, 'owner_avatar') }}
{{ form.field(model, 'description') }}

<div class="form-group">
    {{ html.submitButton('Search', {'class' : 'btn btn-primary'}) | raw }}
    {{ html.resetButton('Reset', {'class' : 'btn btn-primary'}) | raw }}
</div>

{{ active_form_end() }}

Installation

The preferred way to install this extension is through composer.

composer.phar require esquire900/yii2-giiant-twig:"*"

The generators are registered automatically in the application bootstrap process, if the Gii module is enabled

Usage

Visit your application's Gii (eg. index.php?r=gii and choose the CRUD generator from the main menu screen. Make sure that:

  • the "twig" template is selected at the bottom
  • you use namespaces for the controller and models
  • you fill in a search model

For basic usage instructions see the Yii2 Guide section for Gii.

Command Line

Gii creates php files by default, which cannot be easily changed. This extention generates .twig.php files, to convert them automagically, simply run the following from the root folder

./yii giiant-twig

(for basic app only, but you can simply change the behavior for other templates)

Why should I even learn this stuff?

Not only because it's easier to read for non-coders (like those hipster designers nowadays), but it forces you to only use "view" logic in your views, which gives cleaner code and better serparation of responsibilities.

Thanks

Special thanks to the whole yii community, and schmunk42 for creating giiant

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2015-01-17