8

如何更改 CakePHP 3.0.0 中的输入包装器 div 类?

我的代码是:

<?= $this->Form->input('mobile',['div'=>['class'=>'col-md-4'],'class'=>'form-control','label'=>false]) ?>

它返回:

<div class="input text">
    <input type="text" name="mobile" div="col-md-4" class="form-control" id="mobile">
</div>

我想要像这样的输出:

<div class="col-md-4">
    <input type="text" name="mobile" class="form-control" id="mobile">
</div>
4

3 回答 3

20

对于 CakePHP 3.0 版本...

...没有办法只将属性传递给模板。您必须重新定义适当的表单助手模板。

您可以使用例如全局更改它们FormHelper::templates()

$myTemplates = [
    'inputContainer' => '<div class="col-md-4 input {{type}}{{required}}">{{content}}</div>',
    'inputContainerError' => '<div class="col-md-4 input {{type}}{{required}} error">{{content}}{{error}}</div>'
];
$this->Form->templates($myTemplates);

templates或仅通过选项用于特定输入:

echo $this->Form->input('mobile', [
    'templates' => [
        'inputContainer' => '<div class="col-md-4 input {{type}}{{required}}">{{content}}</div>',
        'inputContainerError' => '<div class="col-md-4 input {{type}}{{required}} error">{{content}}{{error}}</div>'
    ],
    'class' => 'form-control',
    'label' => false
]);

也可以看看

从 CakePHP 3.1 开始...

...您可以使用所谓的模板变量。您可以将它们放置在模板中的任何位置

$myTemplates = [
    'inputContainer' => '<div class="input {{class}} {{type}}{{required}}">{{content}}</div>',
    'inputContainerError' => '<div class="input {{class}} {{type}}{{required}} error">{{content}}{{error}}</div>'
];
$this->Form->templates($myTemplates);

并使用该templateVars选项为它们定义值

echo $this->Form->input('mobile', [
    'class' => 'form-control',
    'label' => false,
    'templateVars' => [
        'class' => 'col-md-4'
    ]
]);

也可以看看

于 2014-06-10T16:07:03.357 回答
3

此代码在我的应用程序中运行。我认为根据您的要求,这将很有用。

<?php
                echo $this->Form->input(
                'name', [
                    'class' =>  'full-input',
                    'label' =>  'Class Name :',
                    'templates' => [
                        'inputContainer' => '<div class="full-input-wrapper">{{content}}</div>'
                    ]
                ]);
            ?> 
于 2017-04-16T15:52:40.047 回答
-1
<div class="col-md-4">
 <?php echo $this->Form->input('mobile',['id' => 'mobile', 'class' => 'form-control']); ?>
</div
于 2016-01-15T04:10:06.790 回答