Merge pull request #140 from Cheddam/patch-1

Add documentation for limiting allowed widgets
This commit is contained in:
Daniel Hensby 2016-12-28 11:30:17 +00:00 committed by GitHub
commit 40af14906d
1 changed files with 11 additions and 0 deletions

View File

@ -156,3 +156,14 @@ An example widget is below:
<a href="$Link" rel="lightbox" title="$Title"><img src="$Image" alt="$Title" /></a>
<% end_control %>
## Limiting Allowed Widgets for a Pagetype
You can lock down a particular `WidgetAreaEditor` to only allow adding certain widgets by passing them as a second parameter.
**GreatPage.php**
:::php
$fields->addFieldToTab(
'Root.Widgets',
new WidgetAreaEditor('PhenomenalWidgetArea', ['ParticularlyEpicWidget', 'LessGreatWidget'])
);