Пример #1
0
}
if (!isset($params[1])) {
    redir();
}
$page_number = isset($params[2]) ? (int) $params[2] < 1 ? 1 : (int) $params[2] : 1;
$string = urldecode($params[1]);
$search = new Search();
$search->criteria = $string;
$search->page = $page_number;
$search->show_hidden = $session->level != 'anonymous';
$search->read();
$session->search = htmlspecialchars($string);
if (!$search->results) {
    if ($search->page_size * ($search->page - 1) < $search->count) {
        $html->do_sysmsg(_('Page not found'), null, 404);
    } else {
        $html->do_sysmsg(_('No quotes found'), _('There are no quotes matching your criteria.'), 404);
    }
} else {
    $html->do_header(sprintf(_('Search results for "%s"'), htmlspecialchars($string)));
    $pager = $html->do_pages($search->page + 1, ceil($search->count / $search->page_size), sprintf('%ssearch/%s/%%d', $settings->base_url, str_replace('%', '%%', urlencode($string))), 4);
    $quote = new Quote();
    $odd = true;
    foreach ($search->results as $this_quote) {
        $quote->read($this_quote);
        $quote->output($odd);
        $odd = !$odd;
    }
    $html->output .= $pager;
    $html->do_footer();
}
Пример #2
0
	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Affero General Public License as
	published by the Free Software Foundation, either version 3 of the
	License, or (at your option) any later version.

	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.  See the
	GNU Affero General Public License for more details.

	You should have received a copy of the GNU Affero General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
require classes_dir . 'quote.php';
if (isset($params[0]) && strlen($params[0]) == 4) {
    $quote = new Quote();
    $quote->permaid = $params[0];
} else {
    $html->do_sysmsg(_('Page not found'), null, 404);
}
if (!$quote->read() || $session->level == 'anonymous' && $quote->status != 'approved' || $quote->status == 'deleted') {
    $html->do_sysmsg(_('Page not found'), null, 404);
}
if (isset($params[1]) && $params[1] == $quote->password) {
    $quote->forceshow = true;
} elseif (isset($params[1]) && $params[1] != $quote->password) {
    redir(sprintf('%s%s', $settings->base_url, $quote->permaid));
}
$html->do_header(sprintf(_('Quote #%s'), $quote->permaid));
$quote->output();
$html->do_footer();