Squiz Matrix
4.12.2
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
All
Data Structures
Namespaces
Functions
Variables
Pages
calendar_event_cancellation_management.inc
1
<?php
18
require_once SQ_INCLUDE_PATH.
'/asset_management.inc'
;
19
30
class
Calendar_Event_Cancellation_Management
extends
Asset_Management
31
{
32
33
38
function
Calendar_Event_Cancellation_Management
(&$pm)
39
{
40
$this->
Asset_Management
($pm);
41
42
$this->vars = Array(
43
'name'
=> Array(
44
'added'
=>
'0.0.1'
,
45
'type'
=>
'text'
,
'default'
=>
''
,
46
'description'
=>
'The name of the event'
,
47
),
48
'description'
=> Array(
49
'added'
=>
'0.0.1'
,
50
'type'
=>
'wysiwyg'
,
'default'
=>
''
,
51
'description'
=>
'The reason why this event was cancelled'
,
52
),
53
'start_date'
=> Array(
54
'added'
=>
'0.0.1'
,
55
'type'
=>
'datetime'
,
56
'default'
=>
'---------- --:--:--'
,
57
'parameters'
=> Array(
58
'allow_null'
=> TRUE,
59
'show'
=> Array(
60
'd'
,
'm'
,
'y'
,
'h'
,
'i'
,
61
),
62
),
63
'description'
=>
'The starting date and/or time of the event'
,
64
'update_fn'
=>
''
,
65
),
66
'end_date'
=> Array(
67
'added'
=>
'0.0.1'
,
68
'type'
=>
'datetime'
,
69
'default'
=>
'---------- --:--:--'
,
70
'parameters'
=> Array(
'allow_null'
=> TRUE),
71
'description'
=>
'The ending date and/or time of the event'
,
72
'update_fn'
=>
''
,
73
),
74
);
75
76
$this->components = Array(
77
'__name__'
=> Array(
78
'default_weighting'
=>
'1'
,
79
),
80
'name'
=> Array (
81
'description'
=>
'Event name'
,
82
'default_weighting'
=>
'1'
,
83
),
84
'description'
=> Array (
85
'description'
=>
'Event description'
,
86
'default_weighting'
=>
'1'
,
87
),
88
'start_date'
=> Array (
89
'description'
=>
'Start date and/or time'
,
90
'default_weighting'
=>
'1'
,
91
),
92
'end_date'
=> Array (
93
'description'
=>
'End date and/or time'
,
94
'default_weighting'
=>
'1'
,
95
),
96
);
97
98
}
//end constructor
99
100
101
}
//end class
102
103
?>
squiz_matrix
packages
calendar
calendar_events
calendar_event_cancellation
calendar_event_cancellation_management.inc
Generated on Tue Jan 29 2013 14:04:54 for Squiz Matrix by
1.8.3.1