'; $Action = ForceIncomingString("Action", ""); if ($Action == 'Removed') { echo '
'.$this->Context->GetDefinition('VcalCalendarRemoved').'
'; } else if ($Action == 'Saved') { echo '
'.$this->Context->GetDefinition('VcalCalendarSaved').'
'; } else if ($Action == 'SavedNew') { echo '
'.$this->Context->GetDefinition('VcalNewCalendarSaved').'
'; } echo '
'.$this->Context->GetDefinition('VcalCalendarManagement').'' .$this->Get_Warnings() .'

'.$this->Context->GetDefinition('VcalCalendarReorderNotes').'

'; if ($this->CalendarData) { $c = $this->Context->ObjectFactory->NewObject($this->Context, 'Calendars'); while ($Row = $this->Context->Database->GetRow($this->CalendarData)) { $c->Clear(); $c->GetPropertiesFromDataSet($Row); $c->FormatPropertiesForDisplay(); echo '
'; if ($this->Context->Session->User->Permission('PERMISSION_VCAL_EDIT_CALENDAR')) echo ''.$this->Context->GetDefinition('Edit').''; if ($this->Context->Session->User->Permission('PERMISSION_VCAL_DELETE_CALENDAR')) echo ' '; echo '
' .$c->Title.'
'; } } echo '
'; if ($this->Context->Session->User->Permission('PERMISSION_VCAL_SORT_CALENDAR')) { echo " "; } echo '
'; ?>