'; $Action = ForceIncomingString("Action", ""); if ($Action == 'Removed') { echo '
'.$this->Context->GetDefinition('CategoryRemoved').'
'; } else if ($Action == 'Saved') { echo '
'.$this->Context->GetDefinition('CategorySaved').'
'; } else if ($Action == 'SavedNew') { echo '
'.$this->Context->GetDefinition('NewCategorySaved').'
'; } echo '
'.$this->Context->GetDefinition('CategoryManagement').'' .$this->Get_Warnings() .'

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

'; if ($this->CategoryData) { $c = $this->Context->ObjectFactory->NewObject($this->Context, 'Category'); while ($Row = $this->Context->Database->GetRow($this->CategoryData)) { $c->Clear(); $c->GetPropertiesFromDataSet($Row); $c->FormatPropertiesForDisplay(); echo '
'; if ($this->Context->Session->User->Permission('PERMISSION_EDIT_CATEGORIES')) echo ''.$this->Context->GetDefinition('Edit').''; if ($this->Context->Session->User->Permission('PERMISSION_REMOVE_CATEGORIES')) echo ' '; echo '
' .$c->Name.'
'; } } echo '
'; if ($this->Context->Session->User->Permission('PERMISSION_SORT_CATEGORIES')) { echo " "; } echo '
'; ?>