forked from XoopsModules25x/publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomment_new.php
40 lines (34 loc) · 1.51 KB
/
comment_new.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/*
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 The XUUPS Project http://sourceforge.net/projects/xuups/
* @license http://www.fsf.org/copyleft/gpl.html GNU public license
* @package Publisher
* @subpackage Comments
* @since 1.0
* @author trabis <[email protected]>
*/
use Xmf\Request;
use XoopsModules\Publisher;
require_once dirname(dirname(__DIR__)) . '/mainfile.php';
require_once __DIR__ . '/include/common.php';
/** @var Publisher\Helper $helper */
$helper = Publisher\Helper::getInstance();
$com_itemid = Request::getInt('com_itemid', 0, 'GET');
if ($com_itemid > 0) {
$itemObj = $helper->getHandler('Item')->get($com_itemid);
$com_replytext = _POSTEDBY . ' <strong>' . $itemObj->getLinkedPosterName() . '</strong> ' . _DATE . ' <strong>' . $itemObj->dateSub() . '</strong><br><br>' . $itemObj->summary();
$bodytext = $itemObj->body();
if ('' != $bodytext) {
$com_replytext .= '<br><br>' . $bodytext . '';
}
$com_replytitle = $itemObj->getTitle();
require_once $GLOBALS['xoops']->path('include/comment_new.php');
}