aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-19 00:36:30 +0200
committerThomas Lange <code@nerdmind.de>2021-06-19 00:36:30 +0200
commit84455052b4f2aa90f12e83a60acd896301512357 (patch)
treeddad05c0fe864eef1f7b331c65ce833f0aba2fd6 /admin/post
parentdbf523c2771aecd8294cc48e0301876f5d2a7a94 (diff)
downloadblog-84455052b4f2aa90f12e83a60acd896301512357.tar.gz
blog-84455052b4f2aa90f12e83a60acd896301512357.tar.xz
blog-84455052b4f2aa90f12e83a60acd896301512357.zip
Rename CRUD methods of Attribute class
Diffstat (limited to 'admin/post')
-rw-r--r--admin/post/delete.php2
-rw-r--r--admin/post/insert.php2
-rw-r--r--admin/post/update.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/post/delete.php b/admin/post/delete.php
index 6da8a68..7d4ab10 100644
--- a/admin/post/delete.php
+++ b/admin/post/delete.php
@@ -19,7 +19,7 @@ try {
if(HTTP::issetPOST(['token' => Application::getSecurityToken()], 'delete')) {
try {
- if($Attribute->databaseDELETE($Database)) {
+ if($Attribute->delete($Database)) {
HTTP::redirect(Application::getAdminURL('post/'));
}
} catch(PDOException $Exception) {
diff --git a/admin/post/insert.php b/admin/post/insert.php
index 6065c95..5b2ec52 100644
--- a/admin/post/insert.php
+++ b/admin/post/insert.php
@@ -24,7 +24,7 @@ if(HTTP::issetPOST('id', 'user', 'slug', 'name', 'body', 'argv', 'time_insert',
if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) {
try {
- if($Attribute->databaseINSERT($Database)) {
+ if($Attribute->insert($Database)) {
HTTP::redirect(Application::getAdminURL('post/'));
}
} catch(PDOException $Exception) {
diff --git a/admin/post/update.php b/admin/post/update.php
index d7778f8..6fb621d 100644
--- a/admin/post/update.php
+++ b/admin/post/update.php
@@ -28,7 +28,7 @@ try {
if(HTTP::issetPOST(['token' => Application::getSecurityToken()])) {
try {
- $Attribute->databaseUPDATE($Database);
+ $Attribute->update($Database);
} catch(PDOException $Exception) {
$messages[] = $Exception->getMessage();
}