Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
calendar_event_modification_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'name' => Array(
44  'added' => '0.0.1',
45  'type' => 'text',
46  'default' => '',
47  'description' => 'The modified name of the event',
48  ),
49  'description' => Array(
50  'added' => '0.0.1',
51  'type' => 'wysiwyg',
52  'default' => '',
53  'description' => 'The modified description of the event',
54  ),
55  'start_date' => Array(
56  'added' => '0.0.1',
57  'type' => 'datetime',
58  'default' => '---------- --:--:--',
59  'parameters' => Array(
60  'allow_null' => TRUE,
61  'show' => Array(
62  'd','m','y','h','i',
63  ),
64  ),
65  'description' => 'The starting date and/or time of the event',
66  'update_fn' => '',
67  ),
68  'end_date' => Array(
69  'added' => '0.0.1',
70  'type' => 'datetime',
71  'default' => '---------- --:--:--',
72  'parameters' => Array(
73  'allow_null' => TRUE,
74  ),
75  'description' => 'The ending date and/or time of the event',
76  'update_fn' => '',
77  ),
78  );
79 
80  $this->components = Array(
81  '__name__' => Array(
82  'default_weighting' => '1',
83  ),
84  'name' => Array (
85  'description' => 'Event name',
86  'default_weighting' => '1',
87  ),
88  'description' => Array (
89  'description' => 'Event description',
90  'default_weighting' => '1',
91  ),
92  'start_date' => Array (
93  'description' => 'Start date and/or time',
94  'default_weighting' => '1',
95  ),
96  'end_date' => Array (
97  'description' => 'End date and/or time',
98  'default_weighting' => '1',
99  ),
100  );
101 
102  }//end constructor
103 
104 
105 }//end class
106 
107 ?>