Page Location: /events/
Page FileName: content/events/page.md
Jump to Formatted Article Close Page Source View--- Title: Events TitleNavigation: Events UnPublished: @date Author: John AuthorChildren: MinnieMouse Layout: default LayoutNew: item Children-layout: item --- <!-- These page.md and index.md and sidebar.md, etc.... pages should be excluded from search --> [--more--] [selectpages start=auto orderby='published' order=descend template=default-SummaryItems excerpts=true paginate=true count=3] <!-- When get snippet site running,,,,,, add these On enter parseMeta $this->available = true; $this->visible = true; Then to parseMetaData sets status from meta sets ???? parseMetaDataShared().... sets if ($this->get("status")=="shared") $this->available = false; if ($this->get("status")=="unlisted") $this->visible = false; Then Does any extension processing..... So if updateing status in extension, visible does not change!!!! So update my heirarchy accordingly......... note other PAGE properties available; use as $page->address $page->base $page->location $page->fileName etc..... public $scheme; // server scheme public $address; // server address public $base; // base location public $location; // page location public $fileName; // content file name public $rawData; // raw data of page public $metaData; // meta data public $sharedPages; // shared pages public $headerData; // response header public $outputData; // response output public $parserData; // content data of page public $lastModified; // last modification date public $available; // page is available? (boolean) public $visible; // page is visible location? (boolean) public $active; // page is active location? (boolean) public $cacheable; // page is cacheable? (boolean) -->Jump to Top Page Source Close Page Source View