Added comments about station content variable

This commit is contained in:
Diego Najar 2017-10-21 20:30:20 +02:00
parent 5cd7e6f469
commit 20151c7f05
1 changed files with 10 additions and 0 deletions

View File

@ -68,6 +68,16 @@ $pagesByParent = array(PARENT=>array());
*/
$pagesByParentByKey = array(PARENT=>array());
// Array with static content, each item is a Page Object
// Order by position
/*
array(
0 => Page Object,
1 => Page Object,
...
N => Page Object
)
*/
$staticContent = $staticPages = buildStaticPages();
// ============================================================================