CMS  Version 3.9
SiteMapManifest Class Reference

Static Public Member Functions

static getComponentDefinition ()
 
static getAdminMenu ()
 
static subscribeToEvents ()
 

Detailed Description

Definition at line 39 of file manifest.inc.

Member Function Documentation

◆ getAdminMenu()

static SiteMapManifest::getAdminMenu ( )
static

Definition at line 54 of file manifest.inc.

55  {
56  return array
57  (
58  "Site Configuration" => array
59  (
60 
61  "Site Map" => array("page" => "/admin/site_map",
62  "role" => "admin",
63  "weight" => 10,
64  "icon" => "sitemap")
65  )
66  );
67  }

◆ getComponentDefinition()

static SiteMapManifest::getComponentDefinition ( )
static

Definition at line 41 of file manifest.inc.

42  {
43  $component = new Component();
44  $component->name = "site_map";
45  $component->description = "Maps the site hierarchy of pages";
46  $component->author = "Janice Gallant";
47  $component->version = "1.0";
48  $component->priority = 0;
49  $component->enabled = true;
50 
51  return $component;
52  }
$component
Definition: help.inc:38

◆ subscribeToEvents()

static SiteMapManifest::subscribeToEvents ( )
static

Definition at line 69 of file manifest.inc.

70  {
71  return array("upgradeComponent" => array(SiteMapManager, upgradeComponent),
72  "ComponentScanComplete" => array(SiteMapManager, updateSiteMap),
73  "RegisterSerializationHandler" => array(SiteMapManager, registerSerializationHandler)
74 
75  );
76  }
Scans the application home directory and PHP include path and builds the component and administration...

The documentation for this class was generated from the following file: