PHP Classes

File: htdocs/include/comment_edit.php

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/include/comment_edit.php   Download  
File: htdocs/include/comment_edit.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: Merge pull request #1586 from mambax7/feature/Cannot_use_bool_as_array

fix for Cannot use bool as array
copyright update
Merge pull request #1444 from mambax7/feature/fix_Bootstrap5_Renderer

fix dropdown in XoopsFormRendererBootstrap5
Merge pull request #1239 from Andrew-Staves-Activ/notificationhandler_subscribe_success

Merge branch 'feature/php8_templates' of https://github.com/mambax7/XoopsCore25 into feature/php8_templates

# Conflicts:
# htdocs/themes/xswatch4/modules/publisher/publisher_item.tpl
Merge xswatch4
Date: 2 months ago
Size: 3,080 bytes
 

Contents

Class file image Download
<?php
/**
 * XOOPS comment edit
 *
 * You may not change or alter any portion of this comment or credits
 * of supporting developers from this source code or any supporting source code
 * which is considered copyrighted (c) material of the original comment or credit authors.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
 * @license GNU GPL 2 (https://www.gnu.org/licenses/gpl-2.0.html)
 * @package kernel
 * @since 2.0.0
 * @author Kazumi Ono (AKA onokazu) http://www.myweb.ne.jp/, http://jp.xoops.org/
 */

use Xmf\Request;

if (!
defined('XOOPS_ROOT_PATH') || !is_object($xoopsModule)) {
    throw new \
RuntimeException('Restricted access');
}

include_once
$GLOBALS['xoops']->path('include/comment_constants.php');

if ((
'system' !== $xoopsModule->getVar('dirname') && XOOPS_COMMENT_APPROVENONE == $xoopsModuleConfig['com_rule']) || (!is_object($xoopsUser) && !$xoopsModuleConfig['com_anonpost']) || !is_object($xoopsModule)) {
   
redirect_header(XOOPS_URL . '/user.php', 1, _NOPERM);
}

xoops_loadLanguage('comment');

$com_id = Request::getInt('com_id', 0, 'GET');
$com_mode = htmlspecialchars(Request::getString('com_mode', '', 'GET'), ENT_QUOTES | ENT_HTML5);

if (
$com_mode == '') {
    if (
is_object($xoopsUser)) {
       
/** @var XoopsUser $xoopsUser */
       
$com_mode = $xoopsUser->getVar('umode');
    } else {
       
$com_mode = $xoopsConfig['com_mode'];
    }
}

if (!isset(
$_GET['com_order'])) {
    if (
is_object($xoopsUser)) {
       
$com_order = $xoopsUser->getVar('uorder');
    } else {
       
$com_order = $xoopsConfig['com_order'];
    }
} else {
   
$com_order = Request::getInt('com_order', 0, 'GET');
}

/**
 */
$comment_handler = xoops_getHandler('comment');
$comment = $comment_handler->get($com_id);
$dohtml = $comment->getVar('dohtml');
$dosmiley = $comment->getVar('dosmiley');
$dobr = $comment->getVar('dobr');
$doxcode = $comment->getVar('doxcode');
$com_icon = $comment->getVar('com_icon');
$com_itemid = $comment->getVar('com_itemid');
$com_title = $comment->getVar('com_title', 'e');
$com_text = $comment->getVar('com_text', 'e');
$com_pid = $comment->getVar('com_pid');
$com_status = $comment->getVar('com_status');
$com_rootid = $comment->getVar('com_rootid');
// Start added by voltan
$com_user = $comment->getVar('com_user');
$com_email = $comment->getVar('com_email');
$com_url = $comment->getVar('com_url');
// End added by voltan

if ($xoopsModule->getVar('dirname') !== 'system') {
    include
$GLOBALS['xoops']->path('header.php');
    include
$GLOBALS['xoops']->path('include/comment_form.php');
    include
$GLOBALS['xoops']->path('footer.php');
} else {
   
xoops_cp_header();
    include
$GLOBALS['xoops']->path('include/comment_form.php');
   
xoops_cp_footer();
}