Silverstripe数据对象以多页显示

时间:2016-03-22 22:58:05

标签: silverstripe data-objects

我似乎无法弄清楚如何以多种方式使用数据对象。现在我只能在一页显示它。

我希望能够在cms中编辑表格的项目,在一个页面上显示项目列表,然后在另一个页面上显示一个特定项目。

以下是我迄今为止的结构,它允许我列出页面中的所有客户端并在CMS中编辑它们。我不能在“clientPage”以外的页面上列出它们,也不能看到一个客户端的详细视图页面。

class Clients extends DataObject {
 public static $db = array(
    //All the table columns
);

 // One-to-one relationship with profile picture
public static $has_one = array(
    'ProfilePicture' => 'Image',
    'ClientPage' => 'ClientPage'
);

// Summary fields

public static $summary_fields = array(
    'ProfilePicture.CMSThumbnail'=>'Picture',
    'FIRST_NAME'=>'First Name',
    'LAST_NAME'=>'Last Name',
    'EMAIL'=>'Email'
);

public function getCMSFields_forPopup() {

    // Profile picture field
    $thumbField = new UploadField('ProfilePicture', 'Profile picture');
    $thumbField->allowedExtensions = array('jpg', 'png', 'gif');


    // Name, Description and Website fields
    return new FieldList(
        //all the editable fields for the cms popup
    );
}
}

ClientPage

class ClientPage extends Page{
    private static $has_many = array(
      'Clients'=>'Client'
    );
    public function getCMSFields()
    {
        $fields = parent::getCMSFields();
        $fields->addFieldToTab('Root.Client', GridField::create(
            'Client',
            'Client List',
            $this->Clients(),
            GridFieldConfig_RecordEditor::create()
        ));

        return $fields;
    }
}

class ClientPage_Controller extends Page_Controller{
    public function init() {
        parent::init();
    }
}

如果我尝试使用相同的数据对象制作目录页面,则无效

class ClientDirectoryPage extends Page {
    private static $has_many = array(
      'Clients'=>'Client'
    );
    public function getCMSFields()
    {
        $fields = parent::getCMSFields();
        return $fields;
    }
}

class ClientDirectoryPage_Controller extends Page_Controller{
    public function init() {
        parent::init();
    }
}

1 个答案:

答案 0 :(得分:0)

您的代码无效,因为您尝试错误地实施Polymorfic has-one relation

但是根据你的目标,你应该:

  1. ClientPage has_one客户端(然后客户端字段实际上是ClientPage字段,为1-1关系)
  2. ClientDirectoryPage显示指向ClientPages的链接集合,并且可以通过多种方式实现关系。

    一个。使用SiteTree层次结构:在ClientDirectoryPage下放置几个ClientPages,并使用ClientDirectoryPage::Children()

    访问列表

    湾在ClientPage::get()

  3. 中获取所有网页的列表ClientDirectoryPage_Controller::ClientPages()