- concrete5 Cookbook
- David Strack
- 195字
- 2021-08-13 16:15:59
Getting the children below a page
If you need to access the children of a page, you can have concrete5 return an array of numerical IDs. These IDs can then be used to load each of the Page
objects individually.
How to do it...
The steps for getting the children below a page are as follows:
- Open
/config/site_post.php
in your preferred code editor. - Load the parent page by its ID.
$page = Page::getByID(1);
- Get the array of child IDs.
$children = $page->getCollectionChildrenArray();
- Loop through the child ID array and output the name of each page.
foreach ($children as $childId) { $child = Page::getByID($childId); echo $child->getCollectionName().'<br />'; }
- Exit the process.
exit;
How it works...
concrete5 will return an array of numeric IDs for each of the pages beneath the parent page. In this example, we loaded the home page, so the result should be a list of every page on the website. This function ignores permissions, and can be taxing on the database if there are a lot of pages to load. It is a better idea to use the PageList
class to loop through pages, and that class is described later on in this chapter.
推薦閱讀
- C語言程序設(shè)計(第3版)
- 圖解Java數(shù)據(jù)結(jié)構(gòu)與算法(微課視頻版)
- 程序員面試算法寶典
- MySQL 8 DBA基礎(chǔ)教程
- Git高手之路
- Learning Hunk
- .NET 3.5編程
- Python機器學(xué)習(xí):預(yù)測分析核心算法
- 零基礎(chǔ)看圖學(xué)ScratchJr:少兒趣味編程(全彩大字版)
- Python GUI Programming Cookbook(Second Edition)
- Android技術(shù)內(nèi)幕(系統(tǒng)卷)
- Java核心編程
- 算法精解:C語言描述
- VMware vSphere Design Essentials
- JavaScript Unit Testing