mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\FrameworkTest\Model;
|
|
|
|
use Page;
|
|
use SilverStripe\Forms\RequiredFields;
|
|
use SilverStripe\Forms\Tab;
|
|
|
|
if (!class_exists(Page::class)) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* This class is specifically for the silverstripe/admin behat test multitab-validation.feature
|
|
*/
|
|
class SingleTabPage extends Page
|
|
{
|
|
private static $table_name = 'SingleTabPage';
|
|
|
|
public function getCMSValidator()
|
|
{
|
|
return new RequiredFields([
|
|
'Content'
|
|
]);
|
|
}
|
|
|
|
public function getCMSFields()
|
|
{
|
|
$fields = parent::getCMSFields();
|
|
// Page may will extend CWP BasePage if running in a kitchen-sink context,
|
|
// so removing any extra tabs added - this class is for a "single tab" test
|
|
$tabFieldNames = [];
|
|
foreach ($fields->flattenFields() as $field) {
|
|
$fieldName = $field->getName();
|
|
if (is_a($field, Tab::class) && $fieldName !== 'Main') {
|
|
$tabFieldNames[] = $fieldName;
|
|
}
|
|
}
|
|
foreach ($tabFieldNames as $tabFieldName) {
|
|
$fields->removeByName($tabFieldName);
|
|
}
|
|
return $fields;
|
|
}
|
|
}
|