Lines Matching refs:redirect

2854             $this->redirect('Configuration saved successfully!', 'success');
2856 $this->redirect('Error: Could not save configuration file', 'error');
2866 $this->redirect('Cache cleared successfully!', 'success', 'update');
2868 $this->redirect('Cache directory not found', 'error', 'update');
4249 …$this->redirect("Deleted $count occurrences of recurring event: " . $eventTitle, 'success', 'manag…
4482 … $this->redirect("Updated $count occurrences of recurring event$changeStr", 'success', 'manage');
4594 $this->redirect('No events selected', 'error', 'manage');
4669 … $this->redirect("Moved $moved event(s) to namespace: " . $displayTarget, 'success', 'manage');
4688 $this->redirect('Event file not found', 'error', 'manage');
4693 $this->redirect('Could not read event file', 'error', 'manage');
4715 $this->redirect('Event not found', 'error', 'manage');
4755 … $this->redirect('Moved "' . $event['title'] . '" to ' . $displayTarget, 'success', 'manage');
4765 $this->redirect('Namespace name cannot be empty', 'error', 'manage');
4769 …$this->redirect('Invalid namespace name. Use only letters, numbers, underscore, hyphen, and colon.…
4781 … $this->redirect("Namespace '$namespaceName' already exists with events", 'info', 'manage');
4789 $this->redirect("Failed to create namespace directory", 'error', 'manage');
4802 $this->redirect("Created namespace: $namespaceName", 'success', 'manage');
4812 …$this->redirect('Invalid namespace name. Use only letters, numbers, underscore, hyphen, and colon.…
4818 $this->redirect('Invalid namespace: path traversal not allowed', 'error', 'manage');
4837 $this->redirect("Namespace directory not found: $calendarDir", 'error', 'manage');
4894 …$this->redirect("Deleted namespace '$displayName': $eventsDeleted events in $filesDeleted files", …
4905 …$this->redirect('Invalid old namespace name. Use only letters, numbers, underscore, hyphen, and co…
4910 …$this->redirect('Invalid new namespace name. Use only letters, numbers, underscore, hyphen, and co…
4917 $this->redirect('Invalid namespace: path traversal not allowed', 'error', 'manage');
4923 $this->redirect("Cannot rename to empty namespace", 'error', 'manage');
4946 $this->redirect("Source namespace not found: $oldNamespace", 'error', 'manage');
4952 $this->redirect("Target namespace already exists: $newNamespace", 'error', 'manage');
4963 $this->redirect("Failed to rename namespace", 'error', 'manage');
5007 …$this->redirect("Renamed namespace from '$oldNamespace' to '$newNamespace' ($eventsUpdated events …
5016 $this->redirect('No events selected', 'error', 'manage');
5058 $this->redirect("Deleted $deletedCount event(s)", 'success', 'manage');
5077 $this->redirect('Important namespaces saved', 'success', 'manage');
5079 $this->redirect('Error: Could not save configuration', 'error', 'manage');
5322 …$this->redirect('Upload failed: ' . ($_FILES['plugin_zip']['error'] ?? 'No file uploaded'), 'error…
5332 …$this->redirect('Plugin directory is not writable. Please check permissions: ' . $pluginDir, 'erro…
5338 …$this->redirect('Plugin parent directory is not writable. Please check permissions: ' . DOKU_PLUGI…
5348 $this->redirect('Invalid file type. Please upload a ZIP file.', 'error', 'update');
5373 $this->redirect('Backup file was not created', 'error', 'update');
5380 …$this->redirect('Backup file is too small (' . $backupSize . ' bytes). Only ' . $fileCount . ' fil…
5386 …$this->redirect('Backup incomplete: Only ' . $fileCount . ' files were added (expected 30+). Backu…
5390 $this->redirect('Failed to create backup ZIP file', 'error', 'update');
5397 $this->redirect('Backup failed: ' . $e->getMessage(), 'error', 'update');
5405 $this->redirect('Failed to open ZIP file', 'error', 'update');
5483 $this->redirect($message, 'success', 'update');
5492 $this->redirect('No backup file specified', 'error', 'update');
5498 $this->redirect('Invalid backup filename', 'error', 'update');
5505 $this->redirect('Backup file not found', 'error', 'update');
5510 $this->redirect('Backup deleted: ' . $filename, 'success', 'update');
5512 $this->redirect('Failed to delete backup. Check file permissions.', 'error', 'update');
5523 $this->redirect('Missing filename(s)', 'error', 'update');
5529 $this->redirect('Invalid filename format', 'error', 'update');
5537 $this->redirect('Backup file not found', 'error', 'update');
5542 $this->redirect('A file with the new name already exists', 'error', 'update');
5547 $this->redirect('Backup renamed: ' . $oldName . ' → ' . $newName, 'success', 'update');
5549 $this->redirect('Failed to rename backup. Check file permissions.', 'error', 'update');
5563 $this->redirect('No backup file specified', 'error', 'update');
5569 $this->redirect('Invalid backup filename', 'error', 'update');
5576 $this->redirect('Backup file not found', 'error', 'update');
5585 …$this->redirect('DokuWiki Extension Manager not available. Please install manually: Download the b…
5598 …$this->redirect('Plugin restored from backup: ' . $filename . ' (via Extension Manager)', 'success…
5603 $this->redirect('Restore failed: ' . $errorMsg, 'error', 'update');
5606 $this->redirect('Restore failed: ' . $e->getMessage(), 'error', 'update');
5615 … $this->redirect('Plugin directory is not readable. Please check permissions.', 'error', 'update');
5621 …$this->redirect('Plugin parent directory is not writable. Cannot save backup.', 'error', 'update');
5644 $this->redirect('Backup file was not created', 'error', 'update');
5651 …$this->redirect('Backup file is too small (' . $this->formatBytes($backupSize) . '). Only ' . $fil…
5657 …$this->redirect('Backup incomplete: Only ' . $fileCount . ' files were added (expected 30+). Backu…
5662 …$this->redirect('✓ Manual backup created successfully: ' . $backupName . ' (' . $this->formatBytes…
5665 $this->redirect('Failed to create backup ZIP file', 'error', 'update');
5672 $this->redirect('Backup failed: ' . $e->getMessage(), 'error', 'update');
5870 private function redirect($message, $type = 'success', $tab = null) { function in admin_plugin_calendar