mirror of
https://github.com/silverstripe/silverstripe-testsession
synced 2024-10-22 14:06:00 +02:00
Merge pull request #8 from mateusz/php53
Fix syntax to work with php 5.3, in line with required dependency.
This commit is contained in:
commit
1f67061901
@ -67,10 +67,11 @@ class TestSessionController extends Controller {
|
|||||||
);
|
);
|
||||||
if($databaseTemplates) {
|
if($databaseTemplates) {
|
||||||
$fields->push(
|
$fields->push(
|
||||||
(new DropdownField('createDatabaseTemplate', false))
|
$dropdown = new DropdownField('createDatabaseTemplate', false)
|
||||||
->setSource($databaseTemplates)
|
|
||||||
->setEmptyString('Empty database')
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$dropdown->setSource($databaseTemplates)
|
||||||
|
->setEmptyString('Empty database');
|
||||||
}
|
}
|
||||||
$fields->merge($this->getBaseFields());
|
$fields->merge($this->getBaseFields());
|
||||||
$form = new Form(
|
$form = new Form(
|
||||||
@ -111,11 +112,11 @@ class TestSessionController extends Controller {
|
|||||||
|
|
||||||
protected function getBaseFields() {
|
protected function getBaseFields() {
|
||||||
$fields = new FieldList(
|
$fields = new FieldList(
|
||||||
(new TextField('fixture', 'Fixture YAML file path'))
|
$textfield = new TextField('fixture', 'Fixture YAML file path'),
|
||||||
->setAttribute('placeholder', 'Example: framework/tests/security/MemberTest.yml'),
|
|
||||||
$datetimeField = new DatetimeField('datetime', 'Custom date'),
|
$datetimeField = new DatetimeField('datetime', 'Custom date'),
|
||||||
new HiddenField('flush', null, 1)
|
new HiddenField('flush', null, 1)
|
||||||
);
|
);
|
||||||
|
$textfield->setAttribute('placeholder', 'Example: framework/tests/security/MemberTest.yml');
|
||||||
$datetimeField->getDateField()
|
$datetimeField->getDateField()
|
||||||
->setConfig('dateformat', 'yyyy-MM-dd')
|
->setConfig('dateformat', 'yyyy-MM-dd')
|
||||||
->setConfig('showcalendar', true)
|
->setConfig('showcalendar', true)
|
||||||
|
Loading…
Reference in New Issue
Block a user