Merge pull request #244 from assertchris/stabilize-tag-field-api

Stabilized TagField API
This commit is contained in:
Damian Mooyman 2015-05-22 16:02:50 +12:00
commit 29ca70794a
1 changed files with 10 additions and 8 deletions

View File

@ -230,17 +230,19 @@ class BlogPost extends Page {
TagField::create( TagField::create(
'Categories', 'Categories',
_t('BlogPost.Categories', 'Categories'), _t('BlogPost.Categories', 'Categories'),
$self->Parent()->Categories()->map(), $self->Parent()->Categories(),
$self->Categories()->map(), $self->Categories()
!$self->canCreateCategories() )
), ->setCanCreate($self->canCreateCategories())
->setShouldLazyLoad(true),
TagField::create( TagField::create(
'Tags', 'Tags',
_t('BlogPost.Tags', 'Tags'), _t('BlogPost.Tags', 'Tags'),
$self->Parent()->Tags()->map(), $self->Parent()->Tags(),
$self->Tags()->map(), $self->Tags()
!$self->canCreateTags() )
), ->setCanCreate($self->canCreateTags())
->setShouldLazyLoad(true),
$authorField, $authorField,
$authorNames $authorNames
)->setTitle('Post Options'); )->setTitle('Post Options');