www/engine/System/Classes/Modules/Entitizer/Utils/Handler.php 1 location
|
@@ 103-106 (lines=4) @@
|
100 |
|
|
101 |
|
# Process remove action |
102 |
|
|
103 |
|
if (Request::post('action') === 'remove') { |
104 |
|
|
105 |
|
if (!$this->entity->remove()) return $ajax->error(Language::get(static::$message_error_remove)); |
106 |
|
} |
107 |
|
|
108 |
|
# ------------------------ |
109 |
|
|
www/engine/System/Classes/Modules/Filemanager/Utils/Handler.php 1 location
|
@@ 61-64 (lines=4) @@
|
58 |
|
|
59 |
|
# Process remove action |
60 |
|
|
61 |
|
if (Request::post('action') === 'remove') { |
62 |
|
|
63 |
|
if (!$this->entity->remove()) return $ajax->error(Language::get(static::$message_error_remove)); |
64 |
|
} |
65 |
|
|
66 |
|
# ------------------------ |
67 |
|
|