10月CMS后端列表的列获取数组键值

时间:2016-03-17 12:03:16

标签: php yaml octobercms

你好,我是10月cms的新手。我在我的模型类中定义了下面显示的方法。该方法还用于显示后端表单中的选择选项。此方法返回一个数组,其中键的值类似于db中的字段值。我已经将方法定义为静态,因为它也建议在前端获取函数并使用db记录处理它并迭代它以显示与键匹配的数组的值。一切正常。事情在我的columns.yaml文件中,我如何列出方法的数组值与db记录匹配,就像我在前端那样。

public static function getSampleOptions()
{
    return[
          '1'=>'Sample1',
          '2'=>'Sample2'
          ];
}

2 个答案:

答案 0 :(得分:3)

朋友们,我在10月CMS帮助/支持的帮助下找到了答案 http://octobercms.com/index.php/forum/post/dropdown-shows-its-value-than-key-name-in-list-controller 并提到了几个laravel概念。

模型类方法

public static function getSampleOptions()
{
    return[
      '1'=>'Mobile App',
      '2'=>'Web  App'
      ];
} 

Columns.Yaml文件

sample:
    label: Sample Column
    type: dropdown

再次回到模型中,声明属性对象并将字段名称包含为具有空值的键

public $attributes = ['sample'=>''];

定义get field_name Attribute()函数以设置列中相应键的关联值

public function getSampleAttribute()
{
    $result = $this->attributes['sample'];
    $options = $this->getSampleOptions();

    foreach($options as $key=>$value)
    {
        if($key == $result)
        {
            return $value;
        }
    }
}

更新 编辑记录时纠正问题的解决方案很简单。 创建部分并修改字段。 YAML

_sample_options.htm(部分)//文件名应以_(下划线)开头

<?php
$fieldOptions = $model->getSampleOptions();
$sample = $model->attributes['sample'];
?>
<select id="<?= $field->getId() ?>" name="<?= $field->getName() ?>" class="form-control custom-select" <?= $field->getAttributes() ?>>
    <?php foreach($fieldOptions as $key=>$label)
    {
    ?>
        <option value="<?= $key ?>"  <?php echo ($sample == $key)?"selected":'';  ?>><?= $label ?></option>
    <?php
    } ?>
</select>

此处 $ model $ field 是用于访问目标模型的方法和属性的部分变量。 文档:https://octobercms.com/docs/backend/forms#field-partial

Fields.Yaml文件

sample:
    label: Sample Field
    type: partial
    path: $/october/demo/controllers/sample/_sample_options.htm //path where the partial is located in the controller view

答案 1 :(得分:0)

break a for loop in october cms template if condition not satisfied?

{% for key, pTest in pack.products %}
                                {{loop.length}}
                                <li>{{pTest.productable.name}} {{ key }}</li>
                                {% if key == 2 %}
                                <li class="more">...</li>
                                {% endif %}
                                {% endfor %}