web/wp-content/themes/inove/sidebar.php
changeset 1 0d28b7c10758
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/inove/sidebar.php	Fri Mar 12 13:29:04 2010 +0000
@@ -0,0 +1,179 @@
+<?php
+	$options = get_option('inove_options');
+
+	if($options['feed'] && $options['feed_url']) {
+		if (substr(strtoupper($options['feed_url']), 0, 7) == 'HTTP://') {
+			$feed = $options['feed_url'];
+		} else {
+			$feed = 'http://' . $options['feed_url'];
+		}
+	} else {
+		$feed = get_bloginfo('rss2_url');
+	}
+?>
+
+<!-- sidebar START -->
+<div id="sidebar">
+
+<!-- sidebar north START -->
+<div id="northsidebar" class="sidebar">
+
+	<!-- feeds -->
+	<div class="widget widget_feeds">
+		<div class="content">
+			<div id="subscribe">
+				<a rel="external nofollow" id="feedrss" title="<?php _e('Subscribe to this blog...', 'inove'); ?>" href="<?php echo $feed; ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>', 'inove'); ?></a>
+				<?php if($options['feed_readers']) : ?>
+					<ul id="feed_readers">
+						<li id="google_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('Google', 'inove'); ?>" href="http://fusion.google.com/add?feedurl=<?php echo $feed; ?>"><span><?php _e('Google', 'inove'); ?></span></a></li>
+						<li id="youdao_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('Youdao', 'inove'); ?>" href="http://reader.youdao.com/#url=<?php echo $feed; ?>"><span><?php _e('Youdao', 'inove'); ?></span></a></li>
+						<li id="xianguo_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('Xian Guo', 'inove'); ?>" href="http://www.xianguo.com/subscribe.php?url=<?php echo $feed; ?>"><span><?php _e('Xian Guo', 'inove'); ?></span></a></li>
+						<li id="zhuaxia_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('Zhua Xia', 'inove'); ?>" href="http://www.zhuaxia.com/add_channel.php?url=<?php echo $feed; ?>"><span><?php _e('Zhua Xia', 'inove'); ?></span></a></li>
+						<li id="yahoo_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('My Yahoo!', 'inove'); ?>"	href="http://add.my.yahoo.com/rss?url=<?php echo $feed; ?>"><span><?php _e('My Yahoo!', 'inove'); ?></span></a></li>
+						<li id="newsgator_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('newsgator', 'inove'); ?>"	href="http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=<?php echo $feed; ?>"><span><?php _e('newsgator', 'inove'); ?></span></a></li>
+						<li id="bloglines_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('Bloglines', 'inove'); ?>"	href="http://www.bloglines.com/sub/<?php echo $feed; ?>"><span><?php _e('Bloglines', 'inove'); ?></span></a></li>
+						<li id="inezha_reader"><a rel="external nofollow" class="reader" title="<?php _e('Subscribe with ', 'inove'); _e('iNezha', 'inove'); ?>"	href="http://inezha.com/add?url=<?php echo $feed; ?>"><span><?php _e('iNezha', 'inove'); ?></span></a></li>
+					</ul>
+				<?php endif; ?>
+			</div>
+			<?php if($options['feed_email'] && $options['feed_url_email']) : ?>
+				<a rel="external nofollow" id="feedemail" title="<?php _e('Subscribe to this blog via email...', 'inove'); ?>" href="<?php echo $options['feed_url_email']; ?>"><?php _e('Email feed', 'inove'); ?></a>
+			<?php endif; if($options['twitter'] && $options['twitter_username']) : ?>
+				<a id="followme" title="<?php _e('Follow me!', 'inove'); ?>" href="http://twitter.com/<?php echo $options['twitter_username']; ?>/"><?php _e('Twitter', 'inove'); ?></a>
+			<?php endif; ?>
+			<div class="fixed"></div>
+		</div>
+	</div>
+
+	<!-- showcase -->
+	<?php if( $options['showcase_content'] && (
+		($options['showcase_registered'] && $user_ID) || 
+		($options['showcase_commentator'] && !$user_ID && isset($_COOKIE['comment_author_'.COOKIEHASH])) || 
+		($options['showcase_visitor'] && !$user_ID && !isset($_COOKIE['comment_author_'.COOKIEHASH]))
+	) ) : ?>
+		<div class="widget">
+			<?php if($options['showcase_caption']) : ?>
+				<h3><?php if($options['showcase_title']){echo($options['showcase_title']);}else{_e('Showcase', 'inove');} ?></h3>
+			<?php endif; ?>
+			<div class="content">
+				<?php echo($options['showcase_content']); ?>
+			</div>
+		</div>
+	<?php endif; ?>
+
+<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('north_sidebar') ) : ?>
+
+	<!-- posts -->
+	<?php
+		if (is_single()) {
+			$posts_widget_title = 'Recent Posts';
+		} else {
+			$posts_widget_title = 'Random Posts';
+		}
+	?>
+
+	<div class="widget">
+		<h3><?php echo $posts_widget_title; ?></h3>
+		<ul>
+			<?php
+				if (is_single()) {
+					$posts = get_posts('numberposts=10&orderby=post_date');
+				} else {
+					$posts = get_posts('numberposts=5&orderby=rand');
+				}
+				foreach($posts as $post) {
+					setup_postdata($post);
+					echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>';
+				}
+				$post = $posts[0];
+			?>
+		</ul>
+	</div>
+
+	<!-- recent comments -->
+	<?php if( function_exists('wp_recentcomments') ) : ?>
+		<div class="widget">
+			<h3>Recent Comments</h3>
+			<ul>
+				<?php wp_recentcomments('limit=5&length=16&post=false&smilies=true'); ?>
+			</ul>
+		</div>
+	<?php endif; ?>
+
+	<!-- tag cloud -->
+	<div id="tag_cloud" class="widget">
+		<h3>Tag Cloud</h3>
+		<?php wp_tag_cloud('smallest=8&largest=16'); ?>
+	</div>
+
+<?php endif; ?>
+</div>
+<!-- sidebar north END -->
+
+<div id="centersidebar">
+
+	<!-- sidebar east START -->
+	<div id="eastsidebar" class="sidebar">
+	<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('east_sidebar') ) : ?>
+
+		<!-- categories -->
+		<div class="widget widget_categories">
+			<h3>Categories</h3>
+			<ul>
+				<?php wp_list_cats('sort_column=name&optioncount=0&depth=1'); ?>
+			</ul>
+		</div>
+
+	<?php endif; ?>
+	</div>
+	<!-- sidebar east END -->
+
+	<!-- sidebar west START -->
+	<div id="westsidebar" class="sidebar">
+	<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('west_sidebar') ) : ?>
+
+		<!-- blogroll -->
+		<div class="widget widget_links">
+			<h3>Blogroll</h3>
+			<ul>
+				<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
+			</ul>
+		</div>
+
+	<?php endif; ?>
+	</div>
+	<!-- sidebar west END -->
+	<div class="fixed"></div>
+</div>
+
+<!-- sidebar south START -->
+<div id="southsidebar" class="sidebar">
+<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('south_sidebar') ) : ?>
+
+	<!-- archives -->
+	<div class="widget">
+		<h3>Archives</h3>
+		<?php if(function_exists('wp_easyarchives_widget')) : ?>
+			<?php wp_easyarchives_widget("mode=none&limit=6"); ?>
+		<?php else : ?>
+			<ul>
+				<?php wp_get_archives('type=monthly'); ?>
+			</ul>
+		<?php endif; ?>
+	</div>
+
+	<!-- meta -->
+	<div class="widget">
+		<h3>Meta</h3>
+		<ul>
+			<?php wp_register(); ?>
+			<li><?php wp_loginout(); ?></li>
+		</ul>
+	</div>
+
+<?php endif; ?>
+</div>
+<!-- sidebar south END -->
+
+</div>
+<!-- sidebar END -->