CMS  Version 3.9
manifest.inc
Go to the documentation of this file.
1 <?php
10 {
11  static function getComponentDefinition()
12  {
13  $component = new Component();
14  $component->name = "dashboard";
15  $component->description = "Simple dashboard layout.";
16  $component->author = "Andy Green";
17  $component->version = "1.0";
18  $component->priority = 4;
19  $component->enabled = true;
20 
21  return $component;
22  }
23 
24  static function getAdminMenu()
25  {
26  return array
27  (
28  );
29  }
30 }
31 ?>
$component
Definition: help.inc:38
static getComponentDefinition()
Definition: manifest.inc:11
static getAdminMenu()
Definition: manifest.inc:24