Файловый менеджер - Редактировать - /home/easybachat/sangemarmarmarble.com/oc-admin/comments.php
Ðазад
<?php if(!defined('ABS_PATH')) exit('ABS_PATH is not loaded. Direct access is not allowed.'); /* * Copyright 2014 Osclass * Copyright 2025 Osclass by OsclassPoint.com * * Osclass maintained & developed by OsclassPoint.com * You may not use this file except in compliance with the License. * You may download copy of Osclass at * * https://osclass-classifieds.com/download * * Do not edit or add to this file if you wish to upgrade Osclass to newer * versions in the future. Software is distributed on an "AS IS" basis, without * warranties or conditions of any kind, either express or implied. Do not remove * this NOTICE section as it contains license information and copyrights. */ class CAdminItemComments extends AdminSecBaseModel { private $itemCommentManager; function __construct() { parent::__construct(); //specific things for this class $this->itemCommentManager = ItemComment::newInstance(); } //Business Layer... function doModel() { parent::doModel(); //specific things for this class switch($this->action) { case('bulk_actions'): osc_csrf_check(); $id = Params::getParam('id'); if($id) { switch(Params::getParam('bulk_actions')) { case('delete_all'): $this->itemCommentManager->delete(array(DB_CUSTOM_COND => 'pk_i_id IN (' . implode(', ', $id) . ')')); foreach ($id as $_id) { $iUpdated = $this->itemCommentManager->delete(array('pk_i_id' => $_id)); osc_run_hook("delete_comment", $_id); } osc_add_flash_ok_message(_m('The comments have been deleted'), 'admin'); break; case('activate_all'): foreach ($id as $_id) { $iUpdated = $this->itemCommentManager->update(array('b_active' => 1),array('pk_i_id' => $_id)); if($iUpdated) { $this->sendCommentActivated($_id); } osc_run_hook("activate_comment", $_id); } osc_add_flash_ok_message(_m('The comments have been approved'), 'admin'); break; case('deactivate_all'): foreach ($id as $_id) { $this->itemCommentManager->update(array('b_active' => 0),array('pk_i_id' => $_id)); osc_run_hook("deactivate_comment", $_id); } osc_add_flash_ok_message(_m('The comments have been disapproved'), 'admin'); break; case('enable_all'): foreach ($id as $_id) { $iUpdated = $this->itemCommentManager->update(array('b_enabled' => 1), array('pk_i_id' => $_id)); if($iUpdated) { $this->sendCommentActivated($_id); } osc_run_hook("enable_comment", $_id); } osc_add_flash_ok_message(_m('The comments have been unblocked'), 'admin'); break; case('disable_all'): foreach ($id as $_id) { $this->itemCommentManager->update(array('b_enabled' => 0), array('pk_i_id' => $_id)); osc_run_hook("disable_comment", $_id); } osc_add_flash_ok_message(_m('The comments have been blocked'), 'admin'); break; default: if(Params::getParam("bulk_actions")!="") { osc_run_hook("item_bulk_".Params::getParam("bulk_actions"), Params::getParam('id')); } break; } } $this->redirectTo(osc_admin_base_url(true) . "?page=comments"); break; case('status'): osc_csrf_check(false); $id = Params::getParam('id'); $value = Params::getParam('value'); if (!$id) return false; $id = (int) $id; if (!is_numeric($id)) return false; if (!in_array($value, array('ACTIVE', 'INACTIVE', 'ENABLE', 'DISABLE'))) return false; if($value == 'ACTIVE') { $iUpdated = $this->itemCommentManager->update(array('b_active' => 1),array('pk_i_id' => $id)); if($iUpdated) { $this->sendCommentActivated($id); } osc_run_hook("activate_comment", $id); osc_add_flash_ok_message(_m('The comment has been approved'), 'admin'); } else if($value == 'INACTIVE') { $iUpdated = $this->itemCommentManager->update(array('b_active' => 0),array('pk_i_id' => $id)); osc_run_hook("deactivate_comment", $id); osc_add_flash_ok_message(_m('The comment has been disapproved'), 'admin'); } else if($value == 'ENABLE') { $iUpdated = $this->itemCommentManager->update(array('b_enabled' => 1),array('pk_i_id' => $id)); osc_run_hook("enable_comment", $id); osc_add_flash_ok_message(_m('The comment has been enabled'), 'admin'); } else if($value == 'DISABLE') { $iUpdated = $this->itemCommentManager->update(array('b_enabled' => 0),array('pk_i_id' => $id)); osc_run_hook("disable_comment", $id); osc_add_flash_ok_message(_m('The comment has been disabled'), 'admin'); } $this->redirectTo(osc_admin_base_url(true) . "?page=comments"); break; case('comment_edit'): $comment = ItemComment::newInstance()->findByPrimaryKey(Params::getParam('id')); $item = false; if(isset($comment['fk_i_item_id'])) { $item = Item::newInstance()->findByPrimaryKey($comment['fk_i_item_id']); } $reply = false; if($comment !== false && isset($comment['fk_i_reply_id']) && $comment['fk_i_reply_id'] !== null) { $reply = ItemComment::newInstance()->findByPrimaryKey($comment['fk_i_reply_id']); } $this->_exportVariableToView('comment', $comment); $this->_exportVariableToView('reply', $reply); $this->_exportVariableToView('item', $item); $this->doView('comments/frm.php'); break; case('comment_edit_post'): osc_csrf_check(); $comment = ItemComment::newInstance()->findByPrimaryKey(Params::getParam('id')); $msg = ''; if(!osc_validate_email(Params::getParam('authorEmail'),true)) { $msg .= _m('Email is not correct')."<br/>"; } if(!osc_validate_text(Params::getParam('body'),1 , true)) { $msg .= _m('Comment is required')."<br/>"; } if($msg!='') { osc_add_flash_error_message($msg, 'admin'); $this->redirectTo(osc_admin_base_url(true) . "?page=comments&action=comment_edit&id=".Params::getParam('id')); } $rating = (int)Params::getParam('rating'); if($rating > 5) { $rating = 5; } else if ($rating <= 0) { $rating = null; } if(Params::getParam('replyId') > 0) { $reply = ItemComment::newInstance()->findByPrimaryKey(Params::getParam('replyId')); $msg = ''; if($reply === false || !isset($reply['pk_i_id'])) { $msg .= _m('Parent comment does not exists')."<br/>"; } if (isset($reply['fk_i_reply_id']) && ($reply['fk_i_reply_id'] !== null || $reply['fk_i_reply_id'] > 0)) { $msg .= _m('Parent comment is already reply. Only 1 level of replies are allowed, parent comment cannot be reply to other comment.')."<br/>"; } if (isset($reply['fk_i_item_id']) && $reply['fk_i_item_id'] != $comment['fk_i_item_id']) { $msg .= _m('Parent comment belongs to different listing')."<br/>"; } if (isset($reply['pk_i_id']) && $reply['pk_i_id'] == $comment['pk_i_id']) { $msg .= _m('Reply ID cannot be same as comment ID')."<br/>"; } if($msg != '') { osc_add_flash_error_message($msg, 'admin'); $this->redirectTo(osc_admin_base_url(true) . "?page=comments&action=comment_edit&id=".Params::getParam('id')); } } $this->itemCommentManager->update( array( 's_title' => Params::getParam('title'), 's_body' => Params::getParam('body'), 'i_rating' => $rating, 's_author_name' => Params::getParam('authorName'), 's_author_email' => Params::getParam('authorEmail'), 'fk_i_reply_id' => (Params::getParam('replyId') <= 0 ? NULL : Params::getParam('replyId')) ), array( 'pk_i_id' => Params::getParam('id') ) ); osc_run_hook('edit_comment', Params::getParam('id')); if(Params::getParam('replyId') > 0) { osc_run_hook('edit_comment_reply', Params::getParam('replyId')); } osc_add_flash_ok_message(_m('Great! We just updated your comment'), 'admin'); //$this->redirectTo(osc_admin_base_url(true) . "?page=comments"); $this->redirectTo(osc_admin_base_url(true) . "?page=comments&action=comment_edit&id=".Params::getParam('id')); break; case('delete'): osc_csrf_check(); $this->itemCommentManager->deleteByPrimaryKey(Params::getParam('id')); osc_add_flash_ok_message(_m('The comment has been deleted'), 'admin'); osc_run_hook('delete_comment', Params::getParam('id')); $this->redirectTo(osc_admin_base_url(true) . "?page=comments"); break; default: require_once osc_lib_path()."osclass/classes/datatables/CommentsDataTable.php"; // set default iDisplayLength if(Params::getParam('iDisplayLength') != '') { Cookie::newInstance()->push('listing_iDisplayLength', Params::getParam('iDisplayLength')); Cookie::newInstance()->set(); } else { // set a default value if it's set in the cookie if(Cookie::newInstance()->get_value('listing_iDisplayLength') != '') { Params::setParam('iDisplayLength', Cookie::newInstance()->get_value('listing_iDisplayLength')); } else { Params::setParam('iDisplayLength', 25); } } $this->_exportVariableToView('iDisplayLength', Params::getParam('iDisplayLength')); // Table header order by related if(Params::getParam('sort') == '') { Params::setParam('sort', 'date'); } if(Params::getParam('direction') == '') { Params::setParam('direction', 'desc'); } $page = (int)Params::getParam('iPage'); if($page==0) { $page = 1; }; Params::setParam('iPage', $page); $params = Params::getParamsAsArray(); $commentsDataTable = new CommentsDataTable(); $commentsDataTable->table($params); $aData = $commentsDataTable->getData(); if(count($aData['aRows']) == 0 && $page!=1) { $total = (int)$aData['iTotalDisplayRecords']; $maxPage = ceil($total / (int)$aData['iDisplayLength']); $url = osc_admin_base_url(true).'?'.Params::getServerParam('QUERY_STRING', false, false); if($maxPage==0) { $url = preg_replace('/&iPage=(\d)+/', '&iPage=1', $url); $this->redirectTo($url); } if($page > 1) { $url = preg_replace('/&iPage=(\d)+/', '&iPage='.$maxPage, $url); $this->redirectTo($url); } } $this->_exportVariableToView('aData', $aData); $this->_exportVariableToView('aRawRows', $commentsDataTable->rawRows()); $bulk_options = array( array('value' => '', 'data-dialog-content' => '', 'label' => __('Bulk actions')), array('value' => 'delete_all', 'data-dialog-content' => sprintf(__('Are you sure you want to %s the selected comments?'), strtolower(__('Delete'))), 'label' => __('Delete')), array('value' => 'activate_all', 'data-dialog-content' => sprintf(__('Are you sure you want to %s the selected comments?'), strtolower(__('Activate'))), 'label' => __('Activate')), array('value' => 'deactivate_all', 'data-dialog-content' => sprintf(__('Are you sure you want to %s the selected comments?'), strtolower(__('Deactivate'))), 'label' => __('Deactivate')), array('value' => 'disable_all', 'data-dialog-content' => sprintf(__('Are you sure you want to %s the selected comments?'), strtolower(__('Block'))), 'label' => __('Block')), array('value' => 'enable_all', 'data-dialog-content' => sprintf(__('Are you sure you want to %s the selected comments?'), strtolower(__('Unblock'))), 'label' => __('Unblock')) ); $bulk_options = osc_apply_filter("comment_bulk_filter", $bulk_options); $this->_exportVariableToView('bulk_options', $bulk_options); $this->doView('comments/index.php'); break; } } //hopefully generic... function doView($file) { osc_run_hook("before_admin_html"); osc_current_admin_theme_path($file); Session::newInstance()->_clearVariables(); osc_run_hook("after_admin_html"); } function sendCommentActivated($commentId) { $aComment = $this->itemCommentManager->findByPrimaryKey($commentId); $aItem = Item::newInstance()->findByPrimaryKey($aComment['fk_i_item_id']); View::newInstance()->_exportVariableToView('item', $aItem); osc_run_hook('hook_email_comment_validated', $aComment); } } /* file end: ./oc-admin/comments.php */
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.4 |
proxy
|
phpinfo
|
ÐаÑтройка