wh/smart-admin-bundle

Symfony WHSmartAdminBundle

安装: 240

依赖者: 1

建议者: 0

安全性: 0

星级: 0

关注者: 5

分支: 1

开放问题: 0

语言:JavaScript

类型:symfony-bundle

dev-master 2016-11-03 12:30 UTC

This package is not auto-updated.

Last update: 2024-09-14 17:58:48 UTC


README

使用的模板是smart admin。

安装

public function registerBundles()
{
    $bundles = array(

        new WH\SmartAdminBundle\WHSmartAdminBundle(),

    );

    ...

Twig函数

.dateSelect : 设置select的大小为33%,以便在行内空间中显示

{{ form_row(formCreate.birthday, {'class' : 'dateSelect'}) }}

或20%

{{ form_row(formCreate.birthday, {'class' : 'dateTimeSelect'}) }}

.block 将元素设置为display:block

在删除前请求确认

{{ Smart.confirm('your text') }}

模态框

{{ Smart.modal('size') }}

'size'可以是空(中等大小)或mm, sm, lg

SmartAdminBundle