diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-01 15:08:56 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-01 15:08:56 +0200 |
commit | cd87a869b1d52fd65f53875527abf3205a4098a0 (patch) | |
tree | 097c33fb9fe6fdaa5a03c6eef5e9e0df742c66dc | |
parent | 1782dbf4ea283e75f49dcaae0dac9fbe53ed56bd (diff) | |
download | blog-cd87a869b1d52fd65f53875527abf3205a4098a0.tar.gz blog-cd87a869b1d52fd65f53875527abf3205a4098a0.tar.xz blog-cd87a869b1d52fd65f53875527abf3205a4098a0.zip |
Redirect to entity create form if no entity exists
-rw-r--r-- | admin/page/index.php | 7 | ||||
-rw-r--r-- | admin/post/index.php | 7 | ||||
-rw-r--r-- | admin/user/index.php | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/admin/page/index.php b/admin/page/index.php index 5a2a931..2ec4eab 100644 --- a/admin/page/index.php +++ b/admin/page/index.php @@ -28,6 +28,13 @@ $lastSite = ceil($count / $site_size); $currentSite = HTTP::GET('site') ?? 1; $currentSite = intval($currentSite); +#=============================================================================== +# Redirect to page create form if no page exists +#=============================================================================== +if(!$count) { + HTTP::redirect(Application::getAdminURL('page/insert.php')); +} + if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { Application::error404(); } diff --git a/admin/post/index.php b/admin/post/index.php index e66d3b2..43d960a 100644 --- a/admin/post/index.php +++ b/admin/post/index.php @@ -28,6 +28,13 @@ $lastSite = ceil($count / $site_size); $currentSite = HTTP::GET('site') ?? 1; $currentSite = intval($currentSite); +#=============================================================================== +# Redirect to post create form if no post exists +#=============================================================================== +if(!$count) { + HTTP::redirect(Application::getAdminURL('post/insert.php')); +} + if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { Application::error404(); } diff --git a/admin/user/index.php b/admin/user/index.php index 6513311..dce21db 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -27,6 +27,13 @@ $lastSite = ceil($count / $site_size); $currentSite = HTTP::GET('site') ?? 1; $currentSite = intval($currentSite); +#=============================================================================== +# Redirect to user create form if no user exists +#=============================================================================== +if(!$count) { + HTTP::redirect(Application::getAdminURL('user/insert.php')); +} + if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { Application::error404(); } |