Fix syntax to work with php 5.3, in line with required dependency.

This commit is contained in:
Mateusz Uzdowski 2014-02-07 11:39:36 +13:00
parent 20efb0c6fa
commit bb289936cf
1 changed files with 7 additions and 6 deletions

View File

@ -67,10 +67,11 @@ class TestSessionController extends Controller {
);
if($databaseTemplates) {
$fields->push(
(new DropdownField('createDatabaseTemplate', false))
->setSource($databaseTemplates)
->setEmptyString('Empty database')
$dropdown = new DropdownField('createDatabaseTemplate', false)
);
$dropdown->setSource($databaseTemplates)
->setEmptyString('Empty database');
}
$fields->merge($this->getBaseFields());
$form = new Form(
@ -111,11 +112,11 @@ class TestSessionController extends Controller {
protected function getBaseFields() {
$fields = new FieldList(
(new TextField('fixture', 'Fixture YAML file path'))
->setAttribute('placeholder', 'Example: framework/tests/security/MemberTest.yml'),
$textfield = new TextField('fixture', 'Fixture YAML file path'),
$datetimeField = new DatetimeField('datetime', 'Custom date'),
new HiddenField('flush', null, 1)
);
$textfield->setAttribute('placeholder', 'Example: framework/tests/security/MemberTest.yml');
$datetimeField->getDateField()
->setConfig('dateformat', 'yyyy-MM-dd')
->setConfig('showcalendar', true)
@ -390,4 +391,4 @@ class TestSessionController extends Controller {
return $templates;
}
}
}