mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-01 13:55:01 -04:00
105 lines
3.6 KiB
PHP
105 lines
3.6 KiB
PHP
<?php
|
|
/*
|
|
Widget Name: Comic Archive Dropdown
|
|
Widget URI: http://comiceasel.org/
|
|
Description: Display a list of links of the latest comics.
|
|
Author: Philip M. Hofer (Frumph)
|
|
Version: 1.02
|
|
*/
|
|
|
|
function ceo_comic_archive_jump_to_chapter() {
|
|
$args = array(
|
|
'pad_counts' => 1,
|
|
'orderby' => 'id',
|
|
'order' => 'DESC',
|
|
'hide_empty' => 0,
|
|
'parent' => 0
|
|
);
|
|
$parent_chapters = get_terms( 'chapters', $args );
|
|
$output = '<form method="get">';
|
|
$output .= '<select onchange="document.location.href=this.options[this.selectedIndex].value;">';
|
|
$level = 0;
|
|
$output .= '<option class="level-select" value="">'.__('Select Story','comiceasel').'</option>';
|
|
if (!is_null($parent_chapters)) {
|
|
foreach($parent_chapters as $parent_chapter) {
|
|
$count = '';
|
|
$parent_args = array(
|
|
'numberposts' => 1,
|
|
'post_type' => 'comic',
|
|
'orderby' => 'post_date',
|
|
'order' => 'ASC',
|
|
'post_status' => 'publish',
|
|
'chapters' => $parent_chapter->slug,
|
|
);
|
|
$qposts = get_posts( $parent_args );
|
|
if (is_array($qposts)) {
|
|
$qposts = reset($qposts);
|
|
if ($parent_chapter->count) $count = ' ('.$parent_chapter->count.') ';
|
|
$output .='<option class="level-0" value="'.get_permalink($qposts->ID).'">'.$parent_chapter->name.$count.'</option>';
|
|
}
|
|
$child_chapters = get_term_children( $parent_chapter->term_id, 'chapters' );
|
|
foreach ($child_chapters as $child) {
|
|
$child_term = get_term_by( 'id', $child, 'chapters' );
|
|
if ($child_term->count) {
|
|
$child_args = array(
|
|
'numberposts' => 1,
|
|
'post_type' => 'comic',
|
|
'orderby' => 'post_date',
|
|
'order' => 'ASC',
|
|
'post_status' => 'publish',
|
|
'chapters' => $child_term->slug
|
|
);
|
|
$qcposts = get_posts( $child_args );
|
|
if (is_array($qcposts)) {
|
|
$qcposts = reset($qcposts);
|
|
$output .= '<option class="level-1" value="' . get_permalink($qcposts->ID) . '"> ' . $child_term->name . ' ('.$child_term->count.') </option>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$output .= '</select>';
|
|
$output .= '<noscript>';
|
|
$output .= '<div><input type="submit" value="View" /></div>';
|
|
$output .= '</noscript>';
|
|
$output .= '</form>';
|
|
echo $output;
|
|
}
|
|
|
|
class ceo_comic_archive_dropdown_widget extends WP_Widget {
|
|
|
|
function ceo_comic_archive_dropdown_widget($skip_widget_init = false) {
|
|
if (!$skip_widget_init) {
|
|
$widget_ops = array('classname' => __CLASS__, 'description' => __('Display dropdown list of comic chapters.','easel') );
|
|
$this->WP_Widget(__CLASS__, __('Comic Easel - Comic Chapters','easel'), $widget_ops);
|
|
}
|
|
}
|
|
|
|
function widget($args, $instance) {
|
|
global $post;
|
|
extract($args, EXTR_SKIP);
|
|
echo $before_widget;
|
|
$title = empty($instance['title']) ? __('Comic Chapters','easel') : apply_filters('widget_title', $instance['title']);
|
|
if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
|
|
ceo_comic_archive_jump_to_chapter();
|
|
echo $after_widget;
|
|
}
|
|
|
|
function update($new_instance, $old_instance) {
|
|
$instance = $old_instance;
|
|
$instance['title'] = strip_tags($new_instance['title']);
|
|
return $instance;
|
|
}
|
|
|
|
function form($instance) {
|
|
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
|
|
$title = strip_tags($instance['title']);
|
|
?>
|
|
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:','easel'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
|
|
<?php
|
|
}
|
|
}
|
|
|
|
add_action( 'widgets_init', create_function('', 'return register_widget("ceo_comic_archive_dropdown_widget");') );
|
|
|
|
?>
|