Section API¶
Sections enable you to divide content into groups which can later be used, for example, as basis for permissions.
You can manage Sections by using the PHP API by using SectionService
.
Section REST API
To learn how to manage Sections using the REST API, see REST API reference.
Creating Sections¶
To create a new Section, you need to make use of the SectionCreateStruct
and pass it to the SectionService::createSection
method:
1 2 3 4 |
|
Getting Section information¶
You can use SectionService
to retrieve Section information such as whether it is in use:
1 2 3 4 5 |
|
Listing content in a Section¶
To list content items assigned to a Section you need to make a query
for content belonging to this section, by applying the SearchService
.
You can also use the query to get the total number of assigned content items:
1 2 3 4 5 6 7 8 9 10 |
|
Assigning Section to content¶
To assign content to a Section, use the SectionService::assignSection
method.
You need to provide it with the ContentInfo
object of the content item,
and the Section
object:
1 2 3 |
|
Note that assigning a Section to content does not automatically assign it to the content item's children.