Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
calendar_event_multi_date_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
32 {
33 
34 
40  {
41  $this->Asset_Management($pm);
42 
43  $this->vars = Array(
44  'name' => Array(
45  'added' => '0.1',
46  'type' => 'text',
47  'default' => '',
48  'description' => 'The full name of the calendar_event_multi_date',
49  'update_fn' => '',
50  'is_admin' => FALSE,
51  'is_contextable'=> TRUE,
52  ),
53  'short_date' => Array(
54  'added' => '0.1',
55  'type' => 'text',
56  'default' => '',
57  'description' => 'Summary of the dates',
58  'is_admin' => FALSE,
59  'is_contextable' => TRUE,
60  ),
61  );
62 
63 
64  $this->components = Array(
65  'name' => Array(
66  'description' => 'Name',
67  'default_weighting' => '1',
68  ),
69  'contents' => Array (
70  'description' => 'Contents (HTML stripped)',
71  'default_weighting' => '1',
72  ),
73  );
74 
75  }//end constructor
76 
77 
84  function _getFileList()
85  {
86  return Array('js/dates_chooser.js');
87 
88  }//end _getFileList()
89 
90 
91 }//end class
92 
93 ?>