mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
23 lines
450 B
PHP
23 lines
450 B
PHP
<?php
|
|
|
|
class LegacyTableFieldsTestPage extends TestPage {
|
|
|
|
function getCMSFields() {
|
|
$fields = parent::getCMSFields();
|
|
|
|
$tf = new TableListField('CompaniesTF', 'Company');
|
|
$tf->setShowPagination(true);
|
|
$ctf = new ComplexTableField($this, 'CompaniesCTF', 'Company');
|
|
|
|
$fields->addFieldsToTab('Root.Fields', array(
|
|
$tf,
|
|
$ctf
|
|
));
|
|
|
|
return $fields;
|
|
}
|
|
}
|
|
|
|
class LegacyTableFieldsTestPage_Controller extends TestPage_Controller {
|
|
|
|
} |