ModelAdmin DataObjects

时间:2013-09-06 09:51:40

标签: silverstripe modeladmin

我有这堂课:

class Product extends DataObject { 
    static $db = array(
        'Name' => 'Varchar', 
        'ProductType' => 'Varchar', 
        'Price' => 'Currency'
    ); 
} 

数据库表如下所示:

 --------------------------------- 
| Name      | ProductType | Price |
|-----------+-------------+-------|
| Product 1 | Type1       | 100   |
| Product 2 | Type1       | 240   |
| Product 3 | Type2       | 10    |
| Product 4 | Type1       | 100   |
 --------------------------------- 

我想有2位模特管理员:

class MyFirstModel extends ModelAdmin {
    public static $managed_models = array(
        Product
    );
}

class MySecondModel extends ModelAdmin {
    public static $managed_models = array(
        Product
    );
}

获得此结果的最佳方式是什么:

  • MyFirstModel应该向我显示表格中ProductTypeType1的所有条目

  • MySecondModel应该向我显示表格中ProductTypeType2的所有条目

1 个答案:

答案 0 :(得分:5)

getList()应该是答案。 DOC在这里http://doc.silverstripe.org/framework/en/reference/modeladmin#results-customization

类似于:

public function getList() {
    $list = parent::getList();
    if($this->modelClass == 'Product') {
        $list->exclude('ProductType', 'Type1');
    }
    return $list;
}

如果您有两个以上ProductType,则可以使用数组排除多个值,例如

$list->exclude('ProductType', array('Type2', 'Type3'));