CMS  Version 3.9
SurveyManifest 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 SurveyManifest::getAdminMenu ( )
static

Definition at line 54 of file manifest.inc.

55  {
56  return array
57  (
58  );
59  }

◆ getComponentDefinition()

static SurveyManifest::getComponentDefinition ( )
static

Definition at line 41 of file manifest.inc.

42  {
43  $component = new Component();
44  $component->name = "survey";
45  $component->description = "This component is creates custom questionnaires and allows token-based or anonymous responses.";
46  $component->author = "Janice Gallant";
47  $component->version = "1.0";
48  $component->priority = 5;
49  $component->enabled = true;
50 
51  return $component;
52  }
$component
Definition: help.inc:38

◆ subscribeToEvents()

static SurveyManifest::subscribeToEvents ( )
static

Definition at line 67 of file manifest.inc.

68  {
69  return array(
70  "EnumerateContextHelpClasses" => array(SurveyComponentManager, enumerateContextHelpClasses),
71  "EnumerateDataItemClasses" => array(SurveyComponentManager, enumerateDataItemClasses),
72  "ComponentScanComplete" => array(SurveyComponentManager, setDefaults),
73  "upgradeComponent" => array(SurveyComponentManager, upgradeComponent),
74  "DeleteUser" => array(SurveyComponentManager, deleteUser),
75 
76  );
77  }
SurveyComponentManager - manages survey component; the class name SurveyManager is used for managemen...

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