Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
calendar_event_single_edit_fns.inc
1 <?php
17 require_once dirname(__FILE__).'/../../calendar_event/calendar_event_edit_fns.inc';
18 
31 {
32 
33 
39  {
40  $this->Calendar_Event_Edit_Fns();
41  $this->static_screens['details']['force_unlock'] = FALSE;
42 
43  }//end constructor
44 
45 
61  function paintSingleStartEndChooser(&$asset, &$o, $prefix)
62  {
63  if ($asset->writeAccess('attributes')) {
64  return $this->paintStartEndChooser($asset, $prefix, Array());
65  } else {
66  echo $asset->getFriendlyDatesAndTimes();
67  return FALSE;
68  }
69 
70  }//end paintSingleStartEndChooser()
71 
72 
83  function processSingleStartEndChooser(&$asset, &$o, $prefix)
84  {
85  return $this->processStartEndChooser($asset, $o, $prefix);
86 
87  }//end processSingleStartEndChooser()
88 
89 
90 }//end class
91 
92 ?>