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(
'Categories',
_t('BlogPost.Categories', 'Categories'),
$self->Parent()->Categories()->map(),
$self->Categories()->map(),
!$self->canCreateCategories()
),
$self->Parent()->Categories(),
$self->Categories()
)
->setCanCreate($self->canCreateCategories())
->setShouldLazyLoad(true),
TagField::create(
'Tags',
_t('BlogPost.Tags', 'Tags'),
$self->Parent()->Tags()->map(),
$self->Tags()->map(),
!$self->canCreateTags()
),
$self->Parent()->Tags(),
$self->Tags()
)
->setCanCreate($self->canCreateTags())
->setShouldLazyLoad(true),
$authorField,
$authorNames
)->setTitle('Post Options');