<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: search_custompages_include.php
| Author: Core Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
namespace PHPFusion\Search;
use PHPFusion\ImageRepo;
defined('IN_FUSION') || exit;
if (Search_Engine::get_param('stype') == 'custompages' || Search_Engine::get_param('stype') == 'all') {
$locale = fusion_get_locale('', LOCALE.LOCALESET."search/custompages.php");
$formatted_result = '';
$item_count = "0 ".$locale['c402']." ".$locale['522']."<br />\n";
$order_by = [
'0' => ' DESC',
'1' => ' ASC',
];
$sortby = !empty(Search_Engine::get_param('order')) ? " ORDER BY page_title".$order_by[Search_Engine::get_param('order')] : '';
$limit = (Search_Engine::get_param('stype') != "all" ? " LIMIT ".Search_Engine::get_param('rowstart').",10" : '');
switch (Search_Engine::get_param('fields')) {
case 2:
Search_Engine::search_column('page_content', 'custom_page');
Search_Engine::search_column('page_title', 'custom_page');
Search_Engine::search_column('page_id', 'custom_page');
break;
case 1:
Search_Engine::search_column('page_content', 'custom_page');
Search_Engine::search_column('page_title', 'custom_page');
break;
default:
Search_Engine::search_column('page_title', 'custom_page');
}
if (!empty(Search_Engine::get_param('search_param'))) {
$query = "SELECT * FROM ".DB_CUSTOM_PAGES
.(multilang_table('CP') ? " WHERE ".in_group('page_language', LANGUAGE)." AND " : " WHERE ").
groupaccess('page_access')." AND ".Search_Engine::search_conditions('custom_page');
$result = dbquery($query." LIMIT 100", Search_Engine::get_param('search_param'));
if (dbrows($result)) {
$rows = dbrows($result);
} else {
$rows = 0;
}
if ($rows != 0) {
$item_count = "<a href='".BASEDIR."search.php?stype=custompages&stext=".Search_Engine::get_param('stext')."&".Search_Engine::get_param('composevars')."'>".$rows." ".($rows == 1 ? $locale['c401'] : $locale['c402'])." ".$locale['522']."</a><br />\n";
$result = dbquery($query.$sortby.$limit, Search_Engine::get_param('search_param'));
$search_result = '';
while ($data = dbarray($result)) {
$data['page_content'] = strip_tags(htmlspecialchars_decode($data['page_content']));
$text_all = stripslashes($data['page_content']);
$text_all = Search_Engine::search_striphtmlbbcodes($text_all);
$text_frag = Search_Engine::search_textfrag($text_all);
$subj_c = Search_Engine::search_stringscount($data['page_title']);
$text_c = Search_Engine::search_stringscount($text_all);
$desc = "<div class='quote' style='width:auto;height:auto;overflow:auto'>".$text_frag."</div><br />\n";
$criteria = "<span class='small'>".$subj_c." ".($subj_c == 1 ? $locale['520'] : $locale['521'])." ".$locale['c403']." ".$locale['c404'].", ";
$criteria .= $text_c." ".($text_c == 1 ? $locale['520'] : $locale['521'])." ".$locale['c403']." ".$locale['c405']."</span>\n";
$search_result .= render_search_item_list([
'item_url' => BASEDIR."viewpage.php?page_id=".$data['page_id'],
'item_image' => "<i class='fa fa-file-o fa-lg'></i>",
'item_title' => $data['page_title'],
'item_description' => $desc,
'item_search_criteria' => '',
'item_search_context' => $criteria
]);
}
// Pass strings for theme developers
$formatted_result = render_search_item_wrapper([
'image' => "<img src='".ImageRepo::getimage('ac_CP')."' alt='".$locale['c400']."' style='width:32px;'/>",
'icon_class' => "fa fa-sticky-note-o fa-lg fa-fw",
'search_title' => $locale['c400'],
'search_result' => $item_count,
'search_content' => $search_result
]);
}
Search_Engine::search_navigation($rows);
Search_Engine::search_globalarray($formatted_result);
Search_Engine::append_item_count($item_count);
}
}