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:
Ingo Schommer 2014-02-07 11:41:13 +13:00
commit 1f67061901
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;
}
}
}