2004-01-27 10:58:01 +01:00
< ? php
/* Note: these tags go anywhere in the template */
2004-12-30 11:58:06 +01:00
function get_header () {
2006-10-11 05:39:13 +02:00
do_action ( 'get_header' );
2004-12-30 11:58:06 +01:00
if ( file_exists ( TEMPLATEPATH . '/header.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/header.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/header.php' );
2004-12-30 11:58:06 +01:00
}
2005-10-18 01:41:28 +02:00
2004-12-30 11:58:06 +01:00
function get_footer () {
2006-10-11 05:39:13 +02:00
do_action ( 'get_footer' );
2004-12-30 11:58:06 +01:00
if ( file_exists ( TEMPLATEPATH . '/footer.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/footer.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/footer.php' );
2004-12-30 11:58:06 +01:00
}
2005-10-18 01:41:28 +02:00
2004-12-30 11:58:06 +01:00
function get_sidebar () {
if ( file_exists ( TEMPLATEPATH . '/sidebar.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/sidebar.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/sidebar.php' );
2004-12-30 11:58:06 +01:00
}
2004-07-11 01:34:47 +02:00
function wp_loginout () {
2006-02-22 20:08:55 +01:00
if ( ! is_user_logged_in () )
2006-08-30 23:46:31 +02:00
$link = '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php">' . __ ( 'Login' ) . '</a>' ;
2005-10-18 01:41:28 +02:00
else
2006-08-30 23:46:31 +02:00
$link = '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php?action=logout">' . __ ( 'Logout' ) . '</a>' ;
2004-07-11 01:34:47 +02:00
echo apply_filters ( 'loginout' , $link );
}
2005-10-18 01:41:28 +02:00
2005-01-24 11:06:53 +01:00
function wp_register ( $before = '<li>' , $after = '</li>' ) {
2004-07-11 01:34:47 +02:00
2006-02-22 20:08:55 +01:00
if ( ! is_user_logged_in () ) {
2006-08-30 23:46:31 +02:00
if ( get_option ( 'users_can_register' ) )
2006-10-04 18:47:50 +02:00
$link = $before . '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php?action=register">' . __ ( 'Register' ) . '</a>' . $after ;
2006-02-22 20:08:55 +01:00
else
$link = '' ;
} else {
2006-08-30 23:46:31 +02:00
$link = $before . '<a href="' . get_option ( 'siteurl' ) . '/wp-admin/">' . __ ( 'Site Admin' ) . '</a>' . $after ;
2006-02-22 20:08:55 +01:00
}
2004-07-11 01:34:47 +02:00
echo apply_filters ( 'register' , $link );
}
2005-10-18 01:41:28 +02:00
2004-07-11 01:34:47 +02:00
function wp_meta () {
2005-02-01 07:20:54 +01:00
do_action ( 'wp_meta' );
2004-07-11 01:34:47 +02:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function bloginfo ( $show = '' ) {
2005-10-18 01:41:28 +02:00
$info = get_bloginfo ( $show );
2006-04-03 05:04:39 +02:00
if ( ! strstr ( $show , 'url' ) && //don't filter URLs
! strstr ( $show , 'directory' ) &&
! strstr ( $show , 'home' )) {
2005-10-18 01:41:28 +02:00
$info = apply_filters ( 'bloginfo' , $info , $show );
$info = convert_chars ( $info );
2006-09-07 02:35:42 +02:00
} else {
$info = apply_filters ( 'bloginfo_url' , $info , $show );
2005-10-18 01:41:28 +02:00
}
2005-10-06 02:04:59 +02:00
2005-10-18 01:41:28 +02:00
echo $info ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function get_bloginfo ( $show = '' ) {
2004-02-05 21:55:50 +01:00
2004-09-30 19:56:16 +02:00
switch ( $show ) {
2005-10-18 01:41:28 +02:00
case 'url' :
case 'home' :
case 'siteurl' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'home' );
2005-10-18 01:41:28 +02:00
break ;
case 'wpurl' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'siteurl' );
2005-10-18 01:41:28 +02:00
break ;
case 'description' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blogdescription' );
2005-10-18 01:41:28 +02:00
break ;
case 'rdf_url' :
$output = get_feed_link ( 'rdf' );
break ;
case 'rss_url' :
$output = get_feed_link ( 'rss' );
break ;
case 'rss2_url' :
$output = get_feed_link ( 'rss2' );
break ;
case 'atom_url' :
$output = get_feed_link ( 'atom' );
break ;
2007-02-23 09:18:30 +01:00
case 'comments_atom_url' :
$output = get_feed_link ( 'comments_atom' );
2005-10-18 01:41:28 +02:00
case 'comments_rss2_url' :
$output = get_feed_link ( 'comments_rss2' );
break ;
case 'pingback_url' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'siteurl' ) . '/xmlrpc.php' ;
2005-10-18 01:41:28 +02:00
break ;
case 'stylesheet_url' :
$output = get_stylesheet_uri ();
break ;
case 'stylesheet_directory' :
$output = get_stylesheet_directory_uri ();
break ;
case 'template_directory' :
case 'template_url' :
$output = get_template_directory_uri ();
break ;
case 'admin_email' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'admin_email' );
2005-10-18 01:41:28 +02:00
break ;
case 'charset' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blog_charset' );
2005-10-18 01:41:28 +02:00
if ( '' == $output ) $output = 'UTF-8' ;
break ;
case 'html_type' :
$output = get_option ( 'html_type' );
break ;
case 'version' :
global $wp_version ;
$output = $wp_version ;
break ;
2006-09-24 21:29:32 +02:00
case 'language' :
$output = get_locale ();
$output = str_replace ( '_' , '-' , $output );
break ;
case 'text_direction' :
global $wp_locale ;
$output = $wp_locale -> text_direction ;
break ;
2005-10-18 01:41:28 +02:00
case 'name' :
default :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blogname' );
2005-10-18 01:41:28 +02:00
break ;
2004-09-30 19:56:16 +02:00
}
return $output ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function wp_title ( $sep = '»' , $display = true ) {
2005-10-18 01:41:28 +02:00
global $wpdb ;
2006-04-02 02:20:11 +02:00
global $m , $year , $monthnum , $day , $category_name , $wp_locale , $posts ;
2005-10-18 01:41:28 +02:00
$cat = get_query_var ( 'cat' );
$p = get_query_var ( 'p' );
$name = get_query_var ( 'name' );
$category_name = get_query_var ( 'category_name' );
2005-11-11 01:48:31 +01:00
$author = get_query_var ( 'author' );
$author_name = get_query_var ( 'author_name' );
2006-10-03 17:41:44 +02:00
$title = '' ;
2005-10-18 01:41:28 +02:00
// If there's a category
if ( ! empty ( $cat ) ) {
// category exclusion
if ( ! stristr ( $cat , '-' ) )
2006-08-25 01:50:24 +02:00
$title = apply_filters ( 'single_cat_title' , get_the_category_by_ID ( $cat ));
2007-03-07 02:29:07 +01:00
} elseif ( ! empty ( $category_name ) ) {
2005-10-18 01:41:28 +02:00
if ( stristr ( $category_name , '/' ) ) {
$category_name = explode ( '/' , $category_name );
if ( $category_name [ count ( $category_name ) - 1 ] )
$category_name = $category_name [ count ( $category_name ) - 1 ]; // no trailing slash
else
$category_name = $category_name [ count ( $category_name ) - 2 ]; // there was a trailling slash
}
$title = $wpdb -> get_var ( " SELECT cat_name FROM $wpdb->categories WHERE category_nicename = ' $category_name ' " );
2006-08-25 01:50:24 +02:00
$title = apply_filters ( 'single_cat_title' , $title );
2005-10-18 01:41:28 +02:00
}
2005-11-11 01:48:31 +01:00
// If there's an author
if ( ! empty ( $author ) ) {
$title = get_userdata ( $author );
$title = $title -> display_name ;
}
if ( ! empty ( $author_name ) ) {
// We do a direct query here because we don't cache by nicename.
$title = $wpdb -> get_var ( " SELECT display_name FROM $wpdb->users WHERE user_nicename = ' $author_name ' " );
}
2005-10-18 01:41:28 +02:00
// If there's a month
if ( ! empty ( $m ) ) {
$my_year = substr ( $m , 0 , 4 );
2006-04-02 02:20:11 +02:00
$my_month = $wp_locale -> get_month ( $m );
2005-10-18 01:41:28 +02:00
$title = " $my_year $sep $my_month " ;
}
if ( ! empty ( $year ) ) {
$title = $year ;
if ( ! empty ( $monthnum ) )
2006-04-02 02:20:11 +02:00
$title .= " $sep " . $wp_locale -> get_month ( $monthnum );
2005-10-18 01:41:28 +02:00
if ( ! empty ( $day ) )
$title .= " $sep " . zeroise ( $day , 2 );
}
// If there is a post
if ( is_single () || is_page () ) {
$title = strip_tags ( $posts [ 0 ] -> post_title );
$title = apply_filters ( 'single_post_title' , $title );
}
2005-12-06 00:57:41 +01:00
$prefix = '' ;
2006-10-07 20:54:56 +02:00
if ( ! empty ( $title ) )
2005-12-06 00:57:41 +01:00
$prefix = " $sep " ;
$title = $prefix . $title ;
$title = apply_filters ( 'wp_title' , $title , $sep );
2005-10-18 01:41:28 +02:00
// Send it out
2005-12-06 00:57:41 +01:00
if ( $display )
echo $title ;
else
return $title ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function single_post_title ( $prefix = '' , $display = true ) {
2005-10-18 01:41:28 +02:00
global $wpdb ;
$p = get_query_var ( 'p' );
$name = get_query_var ( 'name' );
if ( intval ( $p ) || '' != $name ) {
if ( ! $p )
$p = $wpdb -> get_var ( " SELECT ID FROM $wpdb->posts WHERE post_name = ' $name ' " );
$post = & get_post ( $p );
$title = $post -> post_title ;
$title = apply_filters ( 'single_post_title' , $title );
if ( $display )
echo $prefix . strip_tags ( $title );
else
return strip_tags ( $title );
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function single_cat_title ( $prefix = '' , $display = true ) {
2005-05-27 08:10:41 +02:00
$cat = intval ( get_query_var ( 'cat' ) );
2005-10-18 01:41:28 +02:00
if ( ! empty ( $cat ) && ! ( strtoupper ( $cat ) == 'ALL' ) ) {
2006-08-25 01:50:24 +02:00
$my_cat_name = apply_filters ( 'single_cat_title' , get_the_category_by_ID ( $cat ));
2005-10-18 01:41:28 +02:00
if ( ! empty ( $my_cat_name ) ) {
if ( $display )
2005-05-27 08:10:41 +02:00
echo $prefix . strip_tags ( $my_cat_name );
else
return strip_tags ( $my_cat_name );
}
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function single_month_title ( $prefix = '' , $display = true ) {
2006-04-02 02:20:11 +02:00
global $m , $monthnum , $wp_locale , $year ;
2005-10-18 01:41:28 +02:00
if ( ! empty ( $monthnum ) && ! empty ( $year ) ) {
2004-10-19 01:45:26 +02:00
$my_year = $year ;
2006-04-02 02:20:11 +02:00
$my_month = $wp_locale -> get_month ( $monthnum );
2005-10-18 01:41:28 +02:00
} elseif ( ! empty ( $m ) ) {
2004-10-19 01:52:36 +02:00
$my_year = substr ( $m , 0 , 4 );
2006-10-05 05:12:24 +02:00
$my_month = $wp_locale -> get_month ( substr ( $m , 4 , 2 ));
2004-10-19 01:52:36 +02:00
}
2006-10-05 05:12:24 +02:00
if ( empty ( $my_month ) )
return false ;
$result = $prefix . $my_month . $prefix . $my_year ;
if ( ! $display )
return $result ;
echo $result ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
/* link navigation hack by Orien http://icecode.com/ */
2004-07-06 19:04:07 +02:00
function get_archives_link ( $url , $text , $format = 'html' , $before = '' , $after = '' ) {
$text = wptexturize ( $text );
2006-12-21 11:10:04 +01:00
$title_text = attribute_escape ( $text );
2004-07-29 01:09:33 +02:00
2005-10-18 01:41:28 +02:00
if ( 'link' == $format )
2004-07-29 01:09:33 +02:00
return " \t <link rel='archives' title=' $title_text ' href=' $url ' /> \n " ;
2005-10-18 01:41:28 +02:00
elseif ( 'option' == $format )
2005-02-14 00:46:33 +01:00
return " \t <option value=' $url '> $before $text $after </option> \n " ;
2005-10-18 01:41:28 +02:00
elseif ( 'html' == $format )
2004-07-29 01:09:33 +02:00
return " \t <li> $before <a href=' $url ' title=' $title_text '> $text </a> $after </li> \n " ;
2005-10-18 01:41:28 +02:00
else // custom
2004-07-29 01:09:33 +02:00
return " \t $before <a href=' $url ' title=' $title_text '> $text </a> $after\n " ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-04-24 21:23:57 +02:00
function wp_get_archives ( $args = '' ) {
2006-06-15 22:28:47 +02:00
global $wp_locale , $wpdb ;
2004-04-24 21:23:57 +02:00
2006-06-15 22:28:47 +02:00
if ( is_array ( $args ) )
$r = & $args ;
else
parse_str ( $args , $r );
2005-10-18 01:41:28 +02:00
2006-06-15 22:28:47 +02:00
$defaults = array ( 'type' => 'monthly' , 'limit' => '' , 'format' => 'html' , 'before' => '' , 'after' => '' , 'show_post_count' => false );
$r = array_merge ( $defaults , $r );
extract ( $r );
2005-10-18 01:41:28 +02:00
if ( '' == $type )
$type = 'monthly' ;
if ( '' != $limit ) {
$limit = ( int ) $limit ;
$limit = ' LIMIT ' . $limit ;
}
2006-06-15 22:28:47 +02:00
2005-10-18 01:41:28 +02:00
// this is what will separate dates on weekly archive links
$archive_week_separator = '–' ;
// over-ride general date format ? 0 = no: use the date format set in Options, 1 = yes: over-ride
$archive_date_format_over_ride = 0 ;
// options for daily archive (only if you over-ride the general date format)
$archive_day_date_format = 'Y/m/d' ;
// options for weekly archive (only if you over-ride the general date format)
$archive_week_start_date_format = 'Y/m/d' ;
$archive_week_end_date_format = 'Y/m/d' ;
if ( ! $archive_date_format_over_ride ) {
2006-08-30 23:46:31 +02:00
$archive_day_date_format = get_option ( 'date_format' );
$archive_week_start_date_format = get_option ( 'date_format' );
$archive_week_end_date_format = get_option ( 'date_format' );
2005-10-18 01:41:28 +02:00
}
2006-08-30 23:46:31 +02:00
$add_hours = intval ( get_option ( 'gmt_offset' ));
$add_minutes = intval ( 60 * ( get_option ( 'gmt_offset' ) - $add_hours ));
2005-10-18 01:41:28 +02:00
if ( 'monthly' == $type ) {
2006-02-12 08:41:56 +01:00
$arcresults = $wpdb -> get_results ( " SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC " . $limit );
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
$afterafter = $after ;
foreach ( $arcresults as $arcresult ) {
$url = get_month_link ( $arcresult -> year , $arcresult -> month );
2006-11-29 22:34:51 +01:00
$text = sprintf ( __ ( '%1$s %2$d' ), $wp_locale -> get_month ( $arcresult -> month ), $arcresult -> year );
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
2005-10-18 01:41:28 +02:00
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
2006-08-30 19:23:42 +02:00
} elseif ( 'yearly' == $type ) {
$arcresults = $wpdb -> get_results ( " SELECT DISTINCT YEAR(post_date) AS `year`, count(ID) as posts FROM $wpdb->posts WHERE post_type ='post' AND post_status = 'publish' GROUP BY YEAR(post_date) ORDER BY post_date DESC " . $limit );
if ( $arcresults ) {
2007-02-27 16:24:54 +01:00
$afterafter = $after ;
foreach ( $arcresults as $arcresult ) {
$url = get_year_link ( $arcresult -> year );
$text = sprintf ( '%d' , $arcresult -> year );
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
2007-02-27 16:24:54 +01:00
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
2005-10-18 01:41:28 +02:00
} elseif ( 'daily' == $type ) {
2006-09-07 19:38:43 +02:00
$arcresults = $wpdb -> get_results ( " SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, DAYOFMONTH(post_date) AS `dayofmonth`, count(ID) as posts FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date), DAYOFMONTH(post_date) ORDER BY post_date DESC " . $limit );
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
2006-09-07 19:38:43 +02:00
$afterafter = $after ;
2005-10-18 01:41:28 +02:00
foreach ( $arcresults as $arcresult ) {
$url = get_day_link ( $arcresult -> year , $arcresult -> month , $arcresult -> dayofmonth );
2006-12-10 01:23:10 +01:00
$date = sprintf ( '%1$d-%2$02d-%3$02d 00:00:00' , $arcresult -> year , $arcresult -> month , $arcresult -> dayofmonth );
2005-10-18 01:41:28 +02:00
$text = mysql2date ( $archive_day_date_format , $date );
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
2005-10-18 01:41:28 +02:00
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
} elseif ( 'weekly' == $type ) {
2006-08-30 23:46:31 +02:00
$start_of_week = get_option ( 'start_of_week' );
2006-09-07 19:38:43 +02:00
$arcresults = $wpdb -> get_results ( " SELECT DISTINCT WEEK(post_date, $start_of_week ) AS `week`, YEAR(post_date) AS yr, DATE_FORMAT(post_date, '%Y-%m-%d') AS yyyymmdd, count(ID) as posts FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY WEEK(post_date, $start_of_week ), YEAR(post_date) ORDER BY post_date DESC " . $limit );
2005-10-18 01:41:28 +02:00
$arc_w_last = '' ;
2006-09-07 19:38:43 +02:00
$afterafter = $after ;
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
foreach ( $arcresults as $arcresult ) {
if ( $arcresult -> week != $arc_w_last ) {
$arc_year = $arcresult -> yr ;
$arc_w_last = $arcresult -> week ;
2006-08-30 23:46:31 +02:00
$arc_week = get_weekstartend ( $arcresult -> yyyymmdd , get_option ( 'start_of_week' ));
2005-10-18 01:41:28 +02:00
$arc_week_start = date_i18n ( $archive_week_start_date_format , $arc_week [ 'start' ]);
$arc_week_end = date_i18n ( $archive_week_end_date_format , $arc_week [ 'end' ]);
2006-12-10 01:23:10 +01:00
$url = sprintf ( '%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d' , get_option ( 'home' ), '' , '?' , '=' , $arc_year , '&' , '=' , $arcresult -> week );
2005-10-18 01:41:28 +02:00
$text = $arc_week_start . $archive_week_separator . $arc_week_end ;
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
2005-10-18 01:41:28 +02:00
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
}
2006-02-19 03:07:13 +01:00
} elseif ( ( 'postbypost' == $type ) || ( 'alpha' == $type ) ) {
( 'alpha' == $type ) ? $orderby = " post_title ASC " : $orderby = " post_date DESC " ;
$arcresults = $wpdb -> get_results ( " SELECT * FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY $orderby $limit " );
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
foreach ( $arcresults as $arcresult ) {
if ( $arcresult -> post_date != '0000-00-00 00:00:00' ) {
$url = get_permalink ( $arcresult );
$arc_title = $arcresult -> post_title ;
if ( $arc_title )
$text = strip_tags ( $arc_title );
else
$text = $arcresult -> ID ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
}
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-09-10 01:07:46 +02:00
// Used in get_calendar
function calendar_week_mod ( $num ) {
$base = 7 ;
return ( $num - $base * floor ( $num / $base ));
}
2005-10-18 01:41:28 +02:00
2006-04-02 02:20:11 +02:00
function get_calendar ( $initial = true ) {
global $wpdb , $m , $monthnum , $year , $timedifference , $wp_locale , $posts ;
2005-10-18 01:41:28 +02:00
2006-11-23 18:56:53 +01:00
$key = md5 ( $m . $monthnum . $year );
if ( $cache = wp_cache_get ( 'get_calendar' , 'calendar' ) ) {
if ( isset ( $cache [ $key ] ) ) {
2006-11-23 19:31:27 +01:00
echo $cache [ $key ];
2006-11-23 18:56:53 +01:00
return ;
}
}
ob_start ();
2005-10-18 01:41:28 +02:00
// Quick check. If we have no posts at all, abort!
if ( ! $posts ) {
2006-02-09 11:03:48 +01:00
$gotsome = $wpdb -> get_var ( " SELECT ID from $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1 " );
2005-10-18 01:41:28 +02:00
if ( ! $gotsome )
return ;
}
if ( isset ( $_GET [ 'w' ]) )
$w = '' . intval ( $_GET [ 'w' ]);
// week_begins = 0 stands for Sunday
2006-08-30 23:46:31 +02:00
$week_begins = intval ( get_option ( 'start_of_week' ));
$add_hours = intval ( get_option ( 'gmt_offset' ));
$add_minutes = intval ( 60 * ( get_option ( 'gmt_offset' ) - $add_hours ));
2005-10-18 01:41:28 +02:00
// Let's figure out when we are
if ( ! empty ( $monthnum ) && ! empty ( $year ) ) {
$thismonth = '' . zeroise ( intval ( $monthnum ), 2 );
$thisyear = '' . intval ( $year );
} elseif ( ! empty ( $w ) ) {
// We need to get the month from MySQL
$thisyear = '' . intval ( substr ( $m , 0 , 4 ));
$d = (( $w - 1 ) * 7 ) + 6 ; //it seems MySQL's weeks disagree with PHP's
$thismonth = $wpdb -> get_var ( " SELECT DATE_FORMAT((DATE_ADD(' ${ thisyear } 0101', INTERVAL $d DAY) ), '%m') " );
} elseif ( ! empty ( $m ) ) {
$calendar = substr ( $m , 0 , 6 );
$thisyear = '' . intval ( substr ( $m , 0 , 4 ));
if ( strlen ( $m ) < 6 )
$thismonth = '01' ;
else
$thismonth = '' . zeroise ( intval ( substr ( $m , 4 , 2 )), 2 );
} else {
2006-10-06 13:22:42 +02:00
$thisyear = gmdate ( 'Y' , current_time ( 'timestamp' ));
$thismonth = gmdate ( 'm' , current_time ( 'timestamp' ));
2005-10-18 01:41:28 +02:00
}
$unixmonth = mktime ( 0 , 0 , 0 , $thismonth , 1 , $thisyear );
// Get the next and previous month and year with at least one post
$previous = $wpdb -> get_row ( " SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb -> posts
WHERE post_date < '$thisyear-$thismonth-01'
2006-02-09 11:03:48 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
ORDER BY post_date DESC
LIMIT 1 " );
$next = $wpdb -> get_row ( " SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb -> posts
WHERE post_date > '$thisyear-$thismonth-01'
AND MONTH ( post_date ) != MONTH ( '$thisyear-$thismonth-01' )
2006-11-24 23:55:28 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
ORDER BY post_date ASC
LIMIT 1 " );
2007-02-23 02:05:59 +01:00
echo '<table id="wp-calendar" summary="' . __ ( 'Calendar' ) . ' " >
2006-04-02 02:20:11 +02:00
< caption > ' . $wp_locale->get_month($thismonth) . ' ' . date(' Y ', $unixmonth) . ' </ caption >
2005-10-18 01:41:28 +02:00
< thead >
< tr > ' ;
$myweek = array ();
for ( $wdcount = 0 ; $wdcount <= 6 ; $wdcount ++ ) {
2006-04-02 02:20:11 +02:00
$myweek [] = $wp_locale -> get_weekday (( $wdcount + $week_begins ) % 7 );
2005-10-18 01:41:28 +02:00
}
foreach ( $myweek as $wd ) {
2006-04-02 02:20:11 +02:00
$day_name = ( true == $initial ) ? $wp_locale -> get_weekday_initial ( $wd ) : $wp_locale -> get_weekday_abbrev ( $wd );
echo " \n \t \t <th abbr= \" $wd\ " scope = \ " col \" title= \" $wd\ " > $day_name </ th > " ;
2005-10-18 01:41:28 +02:00
}
echo '
</ tr >
</ thead >
< tfoot >
< tr > ' ;
if ( $previous ) {
2006-04-02 02:20:11 +02:00
echo " \n \t \t " . '<td abbr="' . $wp_locale -> get_month ( $previous -> month ) . '" colspan="3" id="prev"><a href="' .
get_month_link ( $previous -> year , $previous -> month ) . '" title="' . sprintf ( __ ( 'View posts for %1$s %2$s' ), $wp_locale -> get_month ( $previous -> month ),
date ( 'Y' , mktime ( 0 , 0 , 0 , $previous -> month , 1 , $previous -> year ))) . '">« ' . $wp_locale -> get_month_abbrev ( $wp_locale -> get_month ( $previous -> month )) . '</a></td>' ;
2005-10-18 01:41:28 +02:00
} else {
echo " \n \t \t " . '<td colspan="3" id="prev" class="pad"> </td>' ;
}
echo " \n \t \t " . '<td class="pad"> </td>' ;
if ( $next ) {
2006-04-02 02:20:11 +02:00
echo " \n \t \t " . '<td abbr="' . $wp_locale -> get_month ( $next -> month ) . '" colspan="3" id="next"><a href="' .
get_month_link ( $next -> year , $next -> month ) . '" title="' . sprintf ( __ ( 'View posts for %1$s %2$s' ), $wp_locale -> get_month ( $next -> month ),
date ( 'Y' , mktime ( 0 , 0 , 0 , $next -> month , 1 , $next -> year ))) . '">' . $wp_locale -> get_month_abbrev ( $wp_locale -> get_month ( $next -> month )) . ' »</a></td>' ;
2005-10-18 01:41:28 +02:00
} else {
echo " \n \t \t " . '<td colspan="3" id="next" class="pad"> </td>' ;
}
echo '
</ tr >
</ tfoot >
< tbody >
< tr > ' ;
// Get days with posts
$dayswithposts = $wpdb -> get_results ( " SELECT DISTINCT DAYOFMONTH(post_date)
2006-04-22 02:02:00 +02:00
FROM $wpdb -> posts WHERE MONTH ( post_date ) = '$thismonth'
AND YEAR ( post_date ) = '$thisyear'
2006-02-09 11:03:48 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
AND post_date < '" . current_time(' mysql ') . ' \ '' , ARRAY_N );
if ( $dayswithposts ) {
foreach ( $dayswithposts as $daywith ) {
$daywithpost [] = $daywith [ 0 ];
}
} else {
$daywithpost = array ();
}
if ( strstr ( $_SERVER [ 'HTTP_USER_AGENT' ], 'MSIE' ) || strstr ( strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ]), 'camino' ) || strstr ( strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ]), 'safari' ) )
$ak_title_separator = " \n " ;
else
$ak_title_separator = ', ' ;
$ak_titles_for_day = array ();
$ak_post_titles = $wpdb -> get_results ( " SELECT post_title, DAYOFMONTH(post_date) as dom "
. " FROM $wpdb->posts "
. " WHERE YEAR(post_date) = ' $thisyear ' "
. " AND MONTH(post_date) = ' $thismonth ' "
. " AND post_date < ' " . current_time ( 'mysql' ) . " ' "
2006-02-09 11:03:48 +01:00
. " AND post_type = 'post' AND post_status = 'publish' "
2005-10-18 01:41:28 +02:00
);
if ( $ak_post_titles ) {
foreach ( $ak_post_titles as $ak_post_title ) {
if ( empty ( $ak_titles_for_day [ 'day_' . $ak_post_title -> dom ]) )
$ak_titles_for_day [ 'day_' . $ak_post_title -> dom ] = '' ;
if ( empty ( $ak_titles_for_day [ " $ak_post_title->dom " ]) ) // first one
$ak_titles_for_day [ " $ak_post_title->dom " ] = str_replace ( '"' , '"' , wptexturize ( $ak_post_title -> post_title ));
else
$ak_titles_for_day [ " $ak_post_title->dom " ] .= $ak_title_separator . str_replace ( '"' , '"' , wptexturize ( $ak_post_title -> post_title ));
}
}
// See how much we should pad in the beginning
$pad = calendar_week_mod ( date ( 'w' , $unixmonth ) - $week_begins );
if ( 0 != $pad )
echo " \n \t \t " . '<td colspan="' . $pad . '" class="pad"> </td>' ;
$daysinmonth = intval ( date ( 't' , $unixmonth ));
for ( $day = 1 ; $day <= $daysinmonth ; ++ $day ) {
if ( isset ( $newrow ) && $newrow )
echo " \n \t </tr> \n \t <tr> \n \t \t " ;
$newrow = false ;
2006-08-30 23:46:31 +02:00
if ( $day == gmdate ( 'j' , ( time () + ( get_option ( 'gmt_offset' ) * 3600 ))) && $thismonth == gmdate ( 'm' , time () + ( get_option ( 'gmt_offset' ) * 3600 )) && $thisyear == gmdate ( 'Y' , time () + ( get_option ( 'gmt_offset' ) * 3600 )) )
2005-10-18 01:41:28 +02:00
echo '<td id="today">' ;
else
echo '<td>' ;
if ( in_array ( $day , $daywithpost ) ) // any posts today?
echo '<a href="' . get_day_link ( $thisyear , $thismonth , $day ) . " \" title= \" $ak_titles_for_day[$day] \" > $day </a> " ;
else
echo $day ;
echo '</td>' ;
if ( 6 == calendar_week_mod ( date ( 'w' , mktime ( 0 , 0 , 0 , $thismonth , $day , $thisyear )) - $week_begins ) )
$newrow = true ;
}
$pad = 7 - calendar_week_mod ( date ( 'w' , mktime ( 0 , 0 , 0 , $thismonth , $day , $thisyear )) - $week_begins );
if ( $pad != 0 && $pad != 7 )
echo " \n \t \t " . '<td class="pad" colspan="' . $pad . '"> </td>' ;
echo " \n \t </tr> \n \t </tbody> \n \t </table> " ;
2006-11-23 18:56:53 +01:00
$output = ob_get_contents ();
ob_end_clean ();
echo $output ;
$cache [ $key ] = $output ;
wp_cache_set ( 'get_calendar' , $cache , 'calendar' );
}
function delete_get_calendar_cache () {
wp_cache_delete ( 'get_calendar' , 'calendar' );
2004-01-27 10:58:01 +01:00
}
2006-11-23 18:56:53 +01:00
add_action ( 'save_post' , 'delete_get_calendar_cache' );
add_action ( 'delete_post' , 'delete_get_calendar_cache' );
add_action ( 'update_option_start_of_week' , 'delete_get_calendar_cache' );
add_action ( 'update_option_gmt_offset' , 'delete_get_calendar_cache' );
add_action ( 'update_option_start_of_week' , 'delete_get_calendar_cache' );
2004-01-27 10:58:01 +01:00
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function allowed_tags () {
2005-10-18 01:41:28 +02:00
global $allowedtags ;
2004-05-08 01:56:33 +02:00
$allowed = '' ;
2005-10-18 01:41:28 +02:00
foreach ( $allowedtags as $tag => $attributes ) {
$allowed .= '<' . $tag ;
if ( 0 < count ( $attributes ) ) {
foreach ( $attributes as $attribute => $limits ) {
$allowed .= ' ' . $attribute . '=""' ;
}
}
$allowed .= '> ' ;
}
return htmlentities ( $allowed );
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
/***** Date/Time tags *****/
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_date_xml () {
2005-10-18 01:41:28 +02:00
global $post ;
echo mysql2date ( 'Y-m-d' , $post -> post_date );
//echo ""+$post->post_date;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_date ( $d = '' , $before = '' , $after = '' , $echo = true ) {
2005-10-18 01:41:28 +02:00
global $id , $post , $day , $previousday , $newday ;
$the_date = '' ;
if ( $day != $previousday ) {
$the_date .= $before ;
if ( $d == '' )
2006-08-30 23:46:31 +02:00
$the_date .= mysql2date ( get_option ( 'date_format' ), $post -> post_date );
2005-10-18 01:41:28 +02:00
else
$the_date .= mysql2date ( $d , $post -> post_date );
$the_date .= $after ;
$previousday = $day ;
}
$the_date = apply_filters ( 'the_date' , $the_date , $d , $before , $after );
if ( $echo )
echo $the_date ;
else
return $the_date ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2006-08-30 18:46:08 +02:00
function the_modified_date ( $d = '' ) {
echo apply_filters ( 'the_modified_date' , get_the_modified_date ( $d ), $d );
}
function get_the_modified_date ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_modified_time ( get_option ( 'date_format' ));
2006-08-30 18:46:08 +02:00
else
$the_time = get_post_modified_time ( $d );
return apply_filters ( 'get_the_modified_date' , $the_time , $d );
}
2005-01-07 23:01:59 +01:00
function the_time ( $d = '' ) {
2005-02-06 04:40:08 +01:00
echo apply_filters ( 'the_time' , get_the_time ( $d ), $d );
2005-01-07 23:01:59 +01:00
}
2005-10-18 01:41:28 +02:00
2005-01-07 23:01:59 +01:00
function get_the_time ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_time ( get_option ( 'time_format' ));
2005-01-07 23:01:59 +01:00
else
2005-01-19 03:21:36 +01:00
$the_time = get_post_time ( $d );
2005-02-06 04:40:08 +01:00
return apply_filters ( 'get_the_time' , $the_time , $d );
2005-01-07 23:01:59 +01:00
}
2005-10-18 01:41:28 +02:00
2005-01-19 03:21:36 +01:00
function get_post_time ( $d = 'U' , $gmt = false ) { // returns timestamp
2005-01-07 23:01:59 +01:00
global $post ;
if ( $gmt )
2005-01-19 03:21:36 +01:00
$time = $post -> post_date_gmt ;
2005-01-07 23:01:59 +01:00
else
2005-01-19 03:21:36 +01:00
$time = $post -> post_date ;
$time = mysql2date ( $d , $time );
2005-02-06 04:40:08 +01:00
return apply_filters ( 'get_the_time' , $time , $d , $gmt );
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2005-11-11 00:31:30 +01:00
function the_modified_time ( $d = '' ) {
echo apply_filters ( 'the_modified_time' , get_the_modified_time ( $d ), $d );
}
function get_the_modified_time ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_modified_time ( get_option ( 'time_format' ));
2005-11-11 00:31:30 +01:00
else
$the_time = get_post_modified_time ( $d );
return apply_filters ( 'get_the_modified_time' , $the_time , $d );
}
function get_post_modified_time ( $d = 'U' , $gmt = false ) { // returns timestamp
global $post ;
if ( $gmt )
$time = $post -> post_modified_gmt ;
else
$time = $post -> post_modified ;
$time = mysql2date ( $d , $time );
return apply_filters ( 'get_the_modified_time' , $time , $d , $gmt );
}
2004-01-27 10:58:01 +01:00
function the_weekday () {
2006-04-02 02:20:11 +02:00
global $wp_locale , $id , $post ;
$the_weekday = $wp_locale -> get_weekday ( mysql2date ( 'w' , $post -> post_date ));
2005-10-18 01:41:28 +02:00
$the_weekday = apply_filters ( 'the_weekday' , $the_weekday );
echo $the_weekday ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_weekday_date ( $before = '' , $after = '' ) {
2006-04-02 02:20:11 +02:00
global $wp_locale , $id , $post , $day , $previousweekday ;
2005-10-18 01:41:28 +02:00
$the_weekday_date = '' ;
if ( $day != $previousweekday ) {
$the_weekday_date .= $before ;
2006-04-02 02:20:11 +02:00
$the_weekday_date .= $wp_locale -> get_weekday ( mysql2date ( 'w' , $post -> post_date ));
2005-10-18 01:41:28 +02:00
$the_weekday_date .= $after ;
$previousweekday = $day ;
}
$the_weekday_date = apply_filters ( 'the_weekday_date' , $the_weekday_date , $before , $after );
echo $the_weekday_date ;
2004-01-27 10:58:01 +01:00
}
2006-06-08 01:17:59 +02:00
function wp_head () {
do_action ( 'wp_head' );
}
function wp_footer () {
do_action ( 'wp_footer' );
}
2005-11-07 10:47:51 +01:00
function rsd_link () {
2006-06-18 01:38:45 +02:00
echo ' <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo ( 'wpurl' ) . " /xmlrpc.php?rsd \" /> \n " ;
2005-11-07 10:47:51 +01:00
}
2006-02-18 08:40:43 +01:00
function noindex () {
// If the blog is not public, tell robots to go away.
2006-06-18 01:38:45 +02:00
if ( '0' == get_option ( 'blog_public' ) )
echo " <meta name='robots' content='noindex,nofollow' /> \n " ;
2006-02-18 08:40:43 +01:00
}
2006-06-08 01:17:59 +02:00
2006-10-24 05:57:19 +02:00
function rich_edit_exists () {
global $wp_rich_edit_exists ;
if ( ! isset ( $wp_rich_edit_exists ) )
$wp_rich_edit_exists = file_exists ( ABSPATH . WPINC . '/js/tinymce/tiny_mce.js' );
return $wp_rich_edit_exists ;
}
2006-09-23 00:24:50 +02:00
2006-10-24 05:57:19 +02:00
function user_can_richedit () {
2006-12-07 01:38:54 +01:00
global $wp_rich_edit , $pagenow ;
2006-10-24 05:57:19 +02:00
if ( ! isset ( $wp_rich_edit ) )
2006-12-07 01:38:54 +01:00
$wp_rich_edit = ( 'true' == get_user_option ( 'rich_editing' ) && ! preg_match ( '!opera[ /][2-8]|konqueror|safari!i' , $_SERVER [ 'HTTP_USER_AGENT' ]) && 'comment.php' != $pagenow && rich_edit_exists () ) ? true : false ;
2006-09-23 00:24:50 +02:00
2006-10-24 05:57:19 +02:00
return apply_filters ( 'user_can_richedit' , $wp_rich_edit );
2006-09-23 00:24:50 +02:00
}
2006-06-08 01:17:59 +02:00
function the_editor ( $content , $id = 'content' , $prev_id = 'title' ) {
2006-08-30 23:46:31 +02:00
$rows = get_option ( 'default_post_edit_rows' );
2006-06-08 01:17:59 +02:00
if (( $rows < 3 ) || ( $rows > 100 ))
$rows = 12 ;
$rows = " rows=' $rows ' " ;
2006-09-22 09:04:41 +02:00
if ( user_can_richedit () ) :
2006-06-08 01:17:59 +02:00
add_filter ( 'the_editor_content' , 'wp_richedit_pre' );
2006-09-22 09:04:41 +02:00
// The following line moves the border so that the active button "attaches" to the toolbar. Only IE needs it.
?>
2006-09-23 00:24:50 +02:00
< style type = " text/css " >
2006-09-22 09:04:41 +02:00
#postdivrich table, #postdivrich #quicktags {border-top: none;}
#quicktags {border-bottom: none; padding-bottom: 2px; margin-bottom: -1px;}
#edButtons {border-bottom: 1px solid #ccc;}
2006-09-23 00:24:50 +02:00
</ style >
2006-09-22 09:04:41 +02:00
< div id = 'edButtons' style = 'display:none;' >
< div class = 'zerosize' >< input accesskey = 'e' type = 'button' onclick = 'switchEditors("<?php echo $id; ?>")' /></ div >
2006-11-17 22:16:17 +01:00
< input id = 'edButtonPreview' class = 'edButtonFore' type = 'button' value = '<?php _e(' Visual '); ?>' />
< input id = 'edButtonHTML' class = 'edButtonBack' type = 'button' value = '<?php _e(' Code '); ?>' onclick = 'switchEditors("<?php echo $id; ?>")' />
2006-09-22 09:04:41 +02:00
</ div >
< script type = " text/javascript " >
2007-01-07 03:25:03 +01:00
// <![CDATA[
2006-09-22 09:04:41 +02:00
if ( typeof tinyMCE != " undefined " && tinyMCE . configs . length > 0 )
document . getElementById ( 'edButtons' ) . style . display = 'block' ;
2007-01-07 03:25:03 +01:00
// ]]>
2006-09-22 09:04:41 +02:00
</ script >
< ? php endif ; ?>
< div id = " quicktags " >
< ? php wp_print_scripts ( 'quicktags' ); ?>
< script type = " text/javascript " > edToolbar () </ script >
</ div >
< script type = " text/javascript " >
2007-01-07 03:25:03 +01:00
// <![CDATA[
2006-09-22 09:04:41 +02:00
if ( typeof tinyMCE != " undefined " && tinyMCE . configs . length > 0 )
document . getElementById ( " quicktags " ) . style . display = " none " ;
function edInsertContent ( myField , myValue ) {
//IE support
if ( document . selection ) {
myField . focus ();
sel = document . selection . createRange ();
sel . text = myValue ;
myField . focus ();
}
//MOZILLA/NETSCAPE support
else if ( myField . selectionStart || myField . selectionStart == " 0 " ) {
var startPos = myField . selectionStart ;
var endPos = myField . selectionEnd ;
myField . value = myField . value . substring ( 0 , startPos )
+ myValue
+ myField . value . substring ( endPos , myField . value . length );
myField . focus ();
myField . selectionStart = startPos + myValue . length ;
myField . selectionEnd = startPos + myValue . length ;
} else {
myField . value += myValue ;
myField . focus ();
}
}
2007-01-07 03:25:03 +01:00
// ]]>
2006-09-22 09:04:41 +02:00
</ script >
< ? php
2006-06-08 01:17:59 +02:00
$the_editor = apply_filters ( 'the_editor' , " <div><textarea class='mceEditor' $rows cols='40' name=' $id ' tabindex='2' id=' $id '>%s</textarea></div> \n " );
$the_editor_content = apply_filters ( 'the_editor_content' , $content );
printf ( $the_editor , $the_editor_content );
?>
< script type = " text/javascript " >
//<!--
edCanvas = document . getElementById ( '<?php echo $id; ?>' );
2006-09-22 09:04:41 +02:00
< ? php if ( $prev_id && user_can_richedit () ) : ?>
2006-06-08 01:17:59 +02:00
// This code is meant to allow tabbing from Title to Post (TinyMCE).
if ( tinyMCE . isMSIE )
document . getElementById ( '<?php echo $prev_id; ?>' ) . onkeydown = function ( e )
{
e = e ? e : window . event ;
if ( e . keyCode == 9 && ! e . shiftKey && ! e . controlKey && ! e . altKey ) {
2006-09-22 09:04:41 +02:00
var i = tinyMCE . getInstanceById ( '<?php echo $id; ?>' );
2006-06-08 01:17:59 +02:00
if ( typeof i == 'undefined' )
return true ;
2006-09-22 09:04:41 +02:00
tinyMCE . execCommand ( " mceStartTyping " );
2006-06-08 01:17:59 +02:00
this . blur ();
i . contentWindow . focus ();
e . returnValue = false ;
return false ;
}
}
else
document . getElementById ( '<?php echo $prev_id; ?>' ) . onkeypress = function ( e )
{
e = e ? e : window . event ;
if ( e . keyCode == 9 && ! e . shiftKey && ! e . controlKey && ! e . altKey ) {
2006-09-22 09:04:41 +02:00
var i = tinyMCE . getInstanceById ( '<?php echo $id; ?>' );
2006-06-08 01:17:59 +02:00
if ( typeof i == 'undefined' )
return true ;
2006-09-22 09:04:41 +02:00
tinyMCE . execCommand ( " mceStartTyping " );
2006-06-08 01:17:59 +02:00
this . blur ();
i . contentWindow . focus ();
e . returnValue = false ;
return false ;
}
}
< ? php endif ; ?>
//-->
</ script >
< ? php
}
2006-09-07 19:37:26 +02:00
function the_search_query () {
global $s ;
2006-12-21 11:45:58 +01:00
echo attribute_escape ( stripslashes ( $s ));
2006-09-07 19:37:26 +02:00
}
2006-09-24 22:16:13 +02:00
function language_attributes () {
$output = '' ;
if ( $dir = get_bloginfo ( 'text_direction' ) )
$output = " dir= \" $dir\ " " ;
if ( $lang = get_bloginfo ( 'language' ) ) {
if ( $dir ) $output .= ' ' ;
2007-01-19 23:10:33 +01:00
if ( get_option ( 'html_type' ) == 'text/html' )
$output .= " lang= \" $lang\ " " ;
else $output .= " xml:lang= \" $lang\ " " ;
2006-09-24 22:16:13 +02:00
}
echo $output ;
}
2006-10-03 09:16:49 +02:00
function paginate_links ( $arg = '' ) {
if ( is_array ( $arg ) )
$a = & $arg ;
else
parse_str ( $arg , $a );
// Defaults
$base = '%_%' ; // http://example.com/all_posts.php%_% : %_% is replaced by format (below)
$format = '?page=%#%' ; // ?page=%#% : %#% is replaced by the page number
$total = 1 ;
$current = 0 ;
$show_all = false ;
$prev_next = true ;
$prev_text = __ ( '« Previous' );
$next_text = __ ( 'Next »' );
$end_size = 1 ; // How many numbers on either end including the end
$mid_size = 2 ; // How many numbers to either side of current not including current
$type = 'plain' ;
$add_args = false ; // array of query args to aadd
extract ( $a );
// Who knows what else people pass in $args
$total = ( int ) $total ;
2006-10-03 17:40:26 +02:00
if ( $total < 2 )
return ;
2006-10-03 09:16:49 +02:00
$current = ( int ) $current ;
$end_size = 0 < ( int ) $end_size ? ( int ) $end_size : 1 ; // Out of bounds? Make it the default.
$mid_size = 0 <= ( int ) $mid_size ? ( int ) $mid_size : 2 ;
$add_args = is_array ( $add_args ) ? $add_args : false ;
$r = '' ;
$page_links = array ();
$n = 0 ;
$dots = false ;
if ( $prev_next && $current && 1 < $current ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , 2 == $current ? '' : $format , $base );
$link = str_replace ( '%#%' , $current - 1 , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2006-12-21 11:45:58 +01:00
$page_links [] = " <a class='prev page-numbers' href=' " . attribute_escape ( $link ) . " '> $prev_text </a> " ;
2006-10-03 09:16:49 +02:00
endif ;
for ( $n = 1 ; $n <= $total ; $n ++ ) :
if ( $n == $current ) :
$page_links [] = " <span class='page-numbers current'> $n </span> " ;
$dots = true ;
else :
if ( $show_all || ( $n <= $end_size || ( $current && $n >= $current - $mid_size && $n <= $current + $mid_size ) || $n > $total - $end_size ) ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , 1 == $n ? '' : $format , $base );
$link = str_replace ( '%#%' , $n , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2006-12-21 11:45:58 +01:00
$page_links [] = " <a class='page-numbers' href=' " . attribute_escape ( $link ) . " '> $n </a> " ;
2006-10-03 09:16:49 +02:00
$dots = true ;
elseif ( $dots && ! $show_all ) :
$page_links [] = " <span class='page-numbers dots'>...</span> " ;
$dots = false ;
endif ;
endif ;
endfor ;
if ( $prev_next && $current && ( $current < $total || - 1 == $total ) ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , $format , $base );
$link = str_replace ( '%#%' , $current + 1 , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2006-12-21 11:45:58 +01:00
$page_links [] = " <a class='next page-numbers' href=' " . attribute_escape ( $link ) . " '> $next_text </a> " ;
2006-10-03 09:16:49 +02:00
endif ;
switch ( $type ) :
case 'array' :
return $page_links ;
break ;
case 'list' :
$r .= " <ul class='page-numbers'> \n \t <li> " ;
$r .= join ( " </li> \n \t <li> " , $page_links );
$r .= " </li> \n </ul> \n " ;
break ;
default :
$r = join ( " \n " , $page_links );
break ;
endswitch ;
return $r ;
}
2005-11-11 01:48:31 +01:00
?>