Silverstripe从CheckboxSetField值创建无序列表(many_many)

时间:2015-04-11 23:24:44

标签: php mysql silverstripe

我正在学习,但我已经撞到了另一面墙,所以我还有另外一个问题......

因此,我创建了一个包含公司所有计划功能的DataObject,并且每当创建新的成员资格计划类型时,我都会将所有这些功能显示为CheckboxSetField的复选框因此用户不必纠缠HTML编辑器字段。

所有设置和工作正常,唯一的麻烦是,当我要求复选框的值显示计划功能列表时,我得到一个逗号分隔列表...那不是好,因为我需要能够获取每个选定的功能并将其显示为列表项(<li> ... </li>)。

现在它返回的列表如 1,2 2,3 这些是所选计划功能的ID。我对将复选框的值设置为计划功能的文本字符串犹豫不决,因此我将使用这些ID来引用PlanFeature表中的记录。有没有更好的方法呢?我想我至少需要一个控件来爆炸这个列表...

我花了几个小时尝试(并且失败)让这个工作,我想我需要一些帮助。由于我不知道如何从这个列表中获取项目,我还没有开始探索如何在模板中显示内容,所以我可能也需要一些帮助。在此先感谢:)

这是我的代码。

PlanFeature.php

<?php

class PlanFeature extends DataObject {
    private static $db = array (
        'PlanFeatureText' => 'Varchar',
    );

    private static $belongs_many_many = array (
        'PlanFeature' => 'Pricing',
    );

    private static $summary_fields = array (
        'ID' => 'ID',
        'PlanFeatureText' => 'Plan Feature',
    );

    public function getCMSFields() {
        $fields = FieldList::create(
            TextField::create('PlanFeatureText')
        );
        return $fields;
    }
}
getCMSFields()中的

ServicePlan.php

..//

CheckboxSetField::create(
    'PlanFeatures',
    'Choose Your Plan Features',
    PlanFeature::get()->map('ID', 'PlanFeatureText')
),

..//

Pricing.php

<?php
class Pricing extends Page {
private static $has_many = array (
    'ServicePlans' => 'ServicePlan'
);

private static $many_many = array (
    'PlanFeatures' => 'PlanFeature'
);

public function getCMSFields() {
    $fields = parent::getCMSFields();

    $fields->addFieldsToTab('Root.Plans', GridField::create(
        'ServicePlans',
        'Orenda Force Service Plan Information',
        $this->ServicePlans(),
        GridFieldConfig_RecordEditor::create()
    ));
    $fields->addFieldsToTab('Root.Plans', GridField::create(
        'PlanFeatures',
        'Manage Plan Features',
        $this->PlanFeatures(),
        GridFieldConfig_RecordEditor::create()
    ));

    return $fields;
    }
}

class Pricing_Controller extends Page_Controller {

}

在这里我完全迷失了......所以我确定这一切都不对:(

Page.php (在Page_Controller中)

function ExplodedFeatures() {
    $set = new DataObjectSet();

    if($Features = Pricing::get()->First()->PlanFeatures) {
        foreach(explode(',',$Features) as $key => $value) {
            $set->push(new ArrayData(array('Value' => $value)));
        }
    }

echo $set;
}

public function Features() {
    $Feature = Pricing::get();
    $Feature = $Feature->PlanFeatures()->getOptions();
    return $Feature;
    //return $Feature;
}

Pricing.ss

<section class="body pricing">
    <div class="content">
    <h2 class="title-02 text-monochrome">Pricing</h2>
        <% loop $ServicePlans %>
            <div class="col-1-3 card pricing">
                <div class="pricing__header $PlanColor">
                    <p class="pricing__plan-name">$PlanName</p>
                    <p class="pricing__price">$PlanPrice<sub>$PlanRenewal</sub></p>
                </div>
                <div class="card__contents">
                    <h3 class="title-06">Plan details</h3>
                    <ul>
                    <% loop $PlanFeatures %>
                      <li>$PlanFeatureText</li>
                    <% end_loop %>
                    </ul>
                </div>
            </div>
        <% end_loop %>
        $Content
    </div>
</section>

2 个答案:

答案 0 :(得分:0)

您不应该在Page_Controller中编写任何代码,因为PricingPlanFeature之间已存在关联。

Pricing的模板中(我注意到它是一种Pa​​getype),您应该能够使用以下内容生成PlanFeature s的值列表:

<ul>
<% loop $PlanFeatures %>
  <li>$PlanFeatureText</li>
<% end_loop %>
</ul>

答案 1 :(得分:0)