Skip to:
Content

bbPress.org

Ticket #1274: search.php.orig

File search.php.orig, 2.0 KB (added by chrishajer, 16 years ago)

search.php.orig after trying to apply 1274.2.diff

Line 
1<?php bb_get_header(); ?>
2
3<div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a> &raquo; <?php _e('Search')?></div>
4<?php bb_topic_search_form(); ?>
5
6<?php if ( !empty ( $q ) ) : ?>
7<h3 id="search-for"><?php _e('Search for')?> &#8220;<?php echo esc_html($q); ?>&#8221;</h3>
8<?php endif; ?>
9
10<?php if ( $recent ) : ?>
11<div id="results-recent" class="search-results">
12        <h4><?php _e('Recent Posts')?></h4>
13        <ol>
14<?php foreach ( $recent as $bb_post ) : ?>
15                <li<?php alt_class( 'recent' ); ?>>
16                        <a href="<?php post_link(); ?>"><?php topic_title($bb_post->topic_id); ?></a>
17                        <span class="freshness"><?php printf( __('Posted %s'), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>
18                        <p><?php echo bb_show_context($q, $bb_post->post_text); ?></p>
19                </li>
20<?php endforeach; ?>
21        </ol>
22</div>
23<?php endif; ?>
24
25<?php if ( $relevant ) : ?>
26<div id="results-relevant" class="search-results">
27        <h4><?php _e('Relevant Topics')?></h4>
28        <ol>
29<?php foreach ( $relevant as $topic ) : ?>
30                <li<?php alt_class( 'relevant' ); ?>>
31                <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
32                <span class="freshness"><?php printf( __( 'Last post <a href="%1$s" title="%2$s">%3$s ago</a> by <a href="%4$s">%5$s</a>' ), get_topic_last_post_link(), get_topic_time( array( 'format' => 'datetime' ) ), get_topic_time(), get_user_profile_link( $topic->topic_last_poster ), get_topic_last_poster() ); ?></span>
33                </li>
34<?php endforeach; ?>
35        </ol>
36</div>
37<?php endif; ?>
38
39<?php if ( $q && !$recent && !$relevant ) : ?>
40<p><?php _e('No results found.') ?></p>
41<?php endif; ?>
42<br />
43<p><?php printf(__('You may also try your <a href="http://google.com/search?q=site:%1$s %2$s">search at Google</a>'), bb_get_uri(null, null, BB_URI_CONTEXT_TEXT), urlencode($q)) ?></p>
44<?php bb_get_footer(); ?>