mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 12:48:24 +01:00
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
//TODO Rework to v2 standards into e107_plugins/news/e_search.php
|
|
|
|
$comments_title = defset('ADLAN_0');
|
|
$comments_type_id = 0;
|
|
$comments_return['news'] = "n.news_title";
|
|
$comments_table['news'] = "LEFT JOIN #news AS n ON c.comment_type=0 AND n.news_id = c.comment_item_id";
|
|
/**
|
|
* @param $row
|
|
* @return array
|
|
*/
|
|
function com_search_0($row) {
|
|
global $con;
|
|
$datestamp = $con -> convert_date($row['comment_datestamp'], "long");
|
|
$res['link'] = "comment.php?comment.news.".$row['comment_item_id'];
|
|
$res['pre_title'] = $row['news_title'] ? defset('LAN_SEARCH_71').": " : "";
|
|
$res['title'] = $row['news_title'] ? $row['news_title'] : defset('LAN_SEARCH_9');
|
|
$res['summary'] = $row['comment_comment'];
|
|
preg_match("/([0-9]+)\.(.*)/", $row['comment_author'], $user);
|
|
$res['detail'] = defset('LAN_SEARCH_7')."<a href='user.php?id.".$user[1]."'>".$user[2]."</a>".defset('LAN_SEARCH_8').$datestamp;
|
|
return $res;
|
|
}
|
|
|