1) в модели форума находим функцию deletePost
2) Создаем форум и тред в нем, с названием "Корзина", запоминаем Id этого треда ( например 666 )
3) заменяем функцию на это:
public function deletePost($post_id){ $trash = 666; #ID треда-"мусорки" cmsCore::callEvent('DELETE_POST', $post_id); $post = $this->getPost($post_id); $thread = $post["thread_id"]; if ($thread == $trash) { $this->deletePostAttachments($post_id); cmsCore::deleteUploadImages($post_id, 'post'); $this->inDB->delete('cms_forum_posts', "id = '{$post_id}'", 1); cmsActions::removeObjectLog('add_fpost', $post_id); } else { } return true; }