| 1 |
<?php |
|---|
| 2 |
require_once('admin.php'); |
|---|
| 3 |
$title = __('Dashboard'); |
|---|
| 4 |
require_once('admin-header.php'); |
|---|
| 5 |
require_once (ABSPATH . WPINC . '/rss-functions.php'); |
|---|
| 6 |
|
|---|
| 7 |
$today = current_time('mysql', 1); |
|---|
| 8 |
?> |
|---|
| 9 |
|
|---|
| 10 |
<div class="wrap"> |
|---|
| 11 |
|
|---|
| 12 |
<h2><?php _e('Dashboard'); ?></h2> |
|---|
| 13 |
|
|---|
| 14 |
<div id="zeitgeist"> |
|---|
| 15 |
<h2><?php _e('Latest Activity'); ?></h2> |
|---|
| 16 |
|
|---|
| 17 |
<?php |
|---|
| 18 |
$rss = @fetch_rss('http://feeds.technorati.com/cosmos/rss/?url='. trailingslashit(get_option('home')) .'&partner=wordpress'); |
|---|
| 19 |
if ( isset($rss->items) && 0 != count($rss->items) ) { |
|---|
| 20 |
?> |
|---|
| 21 |
<div id="incominglinks"> |
|---|
| 22 |
<h3><?php _e('Incoming Links'); ?> <cite><a href="http://www.technorati.com/search/<?php echo trailingslashit(get_option('home')); ?>?partner=wordpress"><?php _e('More'); ?> »</a></cite></h3> |
|---|
| 23 |
<ul> |
|---|
| 24 |
<?php |
|---|
| 25 |
$rss->items = array_slice($rss->items, 0, 10); |
|---|
| 26 |
foreach ($rss->items as $item ) { |
|---|
| 27 |
?> |
|---|
| 28 |
<li><a href="<?php echo wp_filter_kses($item['link']); ?>"><?php echo wptexturize(wp_specialchars($item['title'])); ?></a></li> |
|---|
| 29 |
<?php } ?> |
|---|
| 30 |
</ul> |
|---|
| 31 |
</div> |
|---|
| 32 |
<?php } ?> |
|---|
| 33 |
|
|---|
| 34 |
<?php |
|---|
| 35 |
$comments = $wpdb->get_results("SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 5"); |
|---|
| 36 |
$numcomments = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'"); |
|---|
| 37 |
|
|---|
| 38 |
if ( $comments || $numcomments ) : |
|---|
| 39 |
?> |
|---|
| 40 |
<div> |
|---|
| 41 |
<h3><?php _e('Comments'); ?> <a href="edit-comments.php" title="<?php _e('More comments...'); ?>">»</a></h3> |
|---|
| 42 |
|
|---|
| 43 |
<?php if ( $numcomments ) : ?> |
|---|
| 44 |
<p><strong><a href="moderation.php"><?php echo sprintf(__('Comments in moderation (%s)'), number_format($numcomments) ); ?> »</a></strong></p> |
|---|
| 45 |
<?php endif; ?> |
|---|
| 46 |
|
|---|
| 47 |
<ul> |
|---|
| 48 |
<?php |
|---|
| 49 |
if ( $comments ) { |
|---|
| 50 |
foreach ($comments as $comment) { |
|---|
| 51 |
echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>'); |
|---|
| 52 |
edit_comment_link(__("Edit"), ' <small>(', ')</small>'); |
|---|
| 53 |
echo '</li>'; |
|---|
| 54 |
} |
|---|
| 55 |
} |
|---|
| 56 |
?> |
|---|
| 57 |
</ul> |
|---|
| 58 |
</div> |
|---|
| 59 |
<?php endif; ?> |
|---|
| 60 |
|
|---|
| 61 |
|
|---|
| 62 |
<?php |
|---|
| 63 |
if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_date_gmt < '$today' ORDER BY post_date DESC LIMIT 5") ) : |
|---|
| 64 |
?> |
|---|
| 65 |
<div> |
|---|
| 66 |
<h3><?php _e('Posts'); ?> <a href="edit.php" title="<?php _e('More posts...'); ?>">»</a></h3> |
|---|
| 67 |
<ul> |
|---|
| 68 |
<?php |
|---|
| 69 |
foreach ($recentposts as $post) { |
|---|
| 70 |
if ($post->post_title == '') |
|---|
| 71 |
$post->post_title = sprintf(__('Post #%s'), $post->ID); |
|---|
| 72 |
echo "<li><a href='post.php?action=edit&post=$post->ID'>"; |
|---|
| 73 |
the_title(); |
|---|
| 74 |
echo '</a></li>'; |
|---|
| 75 |
} |
|---|
| 76 |
?> |
|---|
| 77 |
</ul> |
|---|
| 78 |
</div> |
|---|
| 79 |
<?php endif; ?> |
|---|
| 80 |
|
|---|
| 81 |
<?php |
|---|
| 82 |
if ( $scheduled = $wpdb->get_results("SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_status = 'publish' AND post_date_gmt > '$today' ORDER BY post_date ASC") ) : |
|---|
| 83 |
?> |
|---|
| 84 |
<div> |
|---|
| 85 |
<h3><?php _e('Scheduled Entries:') ?></h3> |
|---|
| 86 |
<ul> |
|---|
| 87 |
<?php |
|---|
| 88 |
foreach ($scheduled as $post) { |
|---|
| 89 |
if ($post->post_title == '') |
|---|
| 90 |
$post->post_title = sprintf(__('Post #%s'), $post->ID); |
|---|
| 91 |
echo "<li>" . sprintf(__('%1$s in %2$s'), "<a href='post.php?action=edit&post=$post->ID' title='" . __('Edit this post') . "'>$post->post_title</a>", human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT') )) . "</li>"; |
|---|
| 92 |
} |
|---|
| 93 |
?> |
|---|
| 94 |
</ul> |
|---|
| 95 |
</div> |
|---|
| 96 |
<?php endif; ?> |
|---|
| 97 |
|
|---|
| 98 |
<div> |
|---|
| 99 |
<h3><?php _e('Blog Stats'); ?></h3> |
|---|
| 100 |
<?php |
|---|
| 101 |
$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish'"); |
|---|
| 102 |
if (0 < $numposts) $numposts = number_format($numposts); |
|---|
| 103 |
|
|---|
| 104 |
$numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'"); |
|---|
| 105 |
if (0 < $numcomms) $numcomms = number_format($numcomms); |
|---|
| 106 |
|
|---|
| 107 |
$numcats = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->categories"); |
|---|
| 108 |
if (0 < $numcats) $numcats = number_format($numcats); |
|---|
| 109 |
?> |
|---|
| 110 |
<p><?php printf(__('There are currently %1$s <a href="%2$s" title="Posts">posts</a> and %3$s <a href="%4$s" title="Comments">comments</a>, contained within %5$s <a href="%6$s" title="categories">categories</a>.'), $numposts, 'edit.php', $numcomms, 'edit-comments.php', $numcats, 'categories.php'); ?></p> |
|---|
| 111 |
</div> |
|---|
| 112 |
|
|---|
| 113 |
<?php do_action('activity_box_end'); ?> |
|---|
| 114 |
</div> |
|---|
| 115 |
|
|---|
| 116 |
<h3><?php _e('Welcome to WordPress'); ?></h3> |
|---|
| 117 |
|
|---|
| 118 |
<p><?php _e('Use these links to get started:'); ?></p> |
|---|
| 119 |
|
|---|
| 120 |
<ul> |
|---|
| 121 |
<li><a href="post.php"><?php _e('Write a post'); ?></a></li> |
|---|
| 122 |
<li><a href="profile.php"><?php _e('Update your profile or change your password'); ?></a></li> |
|---|
| 123 |
<li><a href="link-add.php"><?php _e('Add a link to your blogroll'); ?></a></li> |
|---|
| 124 |
<li><a href="themes.php"><?php _e('Change your site’s look or theme'); ?></a></li> |
|---|
| 125 |
</ul> |
|---|
| 126 |
|
|---|
| 127 |
<p><?php _e("Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our <a href='http://codex.wordpress.org/'>great documentation</a> or if that doesn't help visit the <a href='http://wordpress.org/support/'>support forums</a>."); ?></p> |
|---|
| 128 |
<?php |
|---|
| 129 |
$rss = @fetch_rss('http://wordpress.org/development/feed/'); |
|---|
| 130 |
if ( isset($rss->items) && 0 != count($rss->items) ) { |
|---|
| 131 |
?> |
|---|
| 132 |
<h3><?php _e('WordPress Development Blog'); ?></h3> |
|---|
| 133 |
<?php |
|---|
| 134 |
$rss->items = array_slice($rss->items, 0, 3); |
|---|
| 135 |
foreach ($rss->items as $item ) { |
|---|
| 136 |
?> |
|---|
| 137 |
<h4><a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars($item['title']); ?></a> — <?php printf(__('%s ago'), human_time_diff(strtotime($item['pubdate'], time() ) ) ); ?></h4> |
|---|
| 138 |
<p><?php echo $item['description']; ?></p> |
|---|
| 139 |
<?php |
|---|
| 140 |
} |
|---|
| 141 |
} |
|---|
| 142 |
?> |
|---|
| 143 |
|
|---|
| 144 |
|
|---|
| 145 |
<?php |
|---|
| 146 |
$rss = @fetch_rss('http://planet.wordpress.org/feed/'); |
|---|
| 147 |
if ( isset($rss->items) && 0 != count($rss->items) ) { |
|---|
| 148 |
?> |
|---|
| 149 |
<div id="planetnews"> |
|---|
| 150 |
<h3><?php _e('Other WordPress News'); ?> <a href="http://planet.wordpress.org/"><?php _e('more'); ?> »</a></h3> |
|---|
| 151 |
<ul> |
|---|
| 152 |
<?php |
|---|
| 153 |
$rss->items = array_slice($rss->items, 0, 20); |
|---|
| 154 |
foreach ($rss->items as $item ) { |
|---|
| 155 |
?> |
|---|
| 156 |
<li><a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars($item['title']); ?></a></li> |
|---|
| 157 |
<?php |
|---|
| 158 |
} |
|---|
| 159 |
?> |
|---|
| 160 |
</ul> |
|---|
| 161 |
</div> |
|---|
| 162 |
<?php |
|---|
| 163 |
} |
|---|
| 164 |
?> |
|---|
| 165 |
<div style="clear: both"> |
|---|
| 166 |
<br clear="all" /> |
|---|
| 167 |
</div> |
|---|
| 168 |
</div> |
|---|
| 169 |
|
|---|
| 170 |
<?php |
|---|
| 171 |
require('./admin-footer.php'); |
|---|
| 172 |
?> |
|---|
| 173 |
|
|---|