Changeset 6305
- Timestamp:
- 08/19/06 06:41:33 (2 years ago)
- Files:
-
- wp-stats/trunk/stats/stats.php (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-stats/trunk/stats/stats.php
r6304 r6305 504 504 if(empty($comment_author)) { 505 505 // General Stats 506 $temp_stats .= '<!-- General Stats -->'."\n";507 506 $temp_stats .= '<h2 class="pagetitle">General Stats</h2>'."\n"; 508 507 $temp_stats .= '<p><b>Total Stats</b></p>'."\n"; … … 517 516 518 517 // Plugin Stats 519 $temp_stats .= '<!-- Plugin Stats -->'."\n";520 518 $temp_stats .= '<h2 class="pagetitle">Plugins Stats</h2>'."\n"; 521 519 522 520 // WP-EMail Stats 523 521 if(function_exists('wp_email')) { 524 $temp_stats .= '<!-- WP-EMail Stats -->'."\n";525 522 $temp_stats .= '<p><b>WP-EMail</b></p>'."\n"; 526 523 $temp_stats .= '<ul>'."\n"; … … 533 530 // WP-Polls Stats 534 531 if(function_exists('get_poll')) { 535 $temp_stats .= '<!-- WP-Polls Stats -->'."\n";536 532 $temp_stats .= '<p><b>WP-Polls</b></p>'."\n"; 537 533 $temp_stats .= '<ul>'."\n"; … … 544 540 // WP-PostRatings Stats 545 541 if(function_exists('the_ratings')) { 546 $temp_stats .= '<!-- WP-PostRatings Stats -->'."\n";547 542 $temp_stats .= '<p><b>WP-PostRatings</b></p>'."\n"; 548 543 $temp_stats .= '<ul>'."\n"; … … 554 549 // WP-PostViews Stats 555 550 if(function_exists('the_views')) { 556 $temp_stats .= '<!-- WP-PostViews Stats -->'."\n";557 551 $temp_stats .= '<p><b>WP-PostViews</b></p>'."\n"; 558 552 $temp_stats .= '<ul>'."\n"; … … 563 557 // WP-UserOnline Stats 564 558 if(function_exists('useronline')) { 565 $temp_stats .= '<!-- WP-UserOnline Stats -->'."\n";566 559 $temp_stats .= '<p><b>WP-UserOnline</b></p>'."\n"; 567 560 $temp_stats .= '<ul>'."\n"; … … 573 566 574 567 // Top 10 Stats 575 $temp_stats .= '<!-- Top 10 Stats-->'."\n";576 568 $temp_stats .= '<h2 class="pagetitle">Top 10 Stats</h2>'."\n"; 577 569 578 570 // 10 Recent Posts 579 $temp_stats .= '<!-- 10 Recent Posts -->'."\n";580 571 $temp_stats .= '<p><b>10 Recent Posts</b></p>'."\n"; 581 572 $temp_stats .= '<ul>'."\n"; … … 584 575 585 576 // 10 Recent Comments 586 $temp_stats .= '<!-- 10 Recent Comments -->'."\n";587 577 $temp_stats .= '<p><b>10 Recent Comments</b></p>'."\n"; 588 578 $temp_stats .= '<ul>'."\n"; … … 591 581 592 582 // 10 Most Commented Post 593 $temp_stats .= '<!-- 10 Most Commented Post -->'."\n";594 583 $temp_stats .= '<p><b>10 Most Commented Post</b></p>'."\n"; 595 584 $temp_stats .= '<ul>'."\n"; … … 599 588 // WP-EMail (10 Most EMailed Post) 600 589 if(function_exists('wp_email')) { 601 $temp_stats .= '<!-- WP-EMail (10 Most EMailed Post) -->'."\n";602 590 $temp_stats .= '<p><b>10 Most Emailed Post</b></p>'."\n"; 603 591 $temp_stats .= '<ul>'."\n"; … … 608 596 // WP-PostRatings (10 Highest Rated Post) (10 Most Rated Post) 609 597 if(function_exists('the_ratings')) { 610 $temp_stats .= '<!-- WP-PostRatings (10 Highest Rated Post) -->'."\n";611 598 $temp_stats .= '<p><b>10 Highest Rated Post</b></p>'."\n"; 612 599 $temp_stats .= '<ul>'."\n"; 613 600 $temp_stats .= get_highest_rated('', 10, 0, false); 614 601 $temp_stats .= '</ul>'."\n"; 615 616 $temp_stats .= '<!-- WP-PostRatings (10 Most Rated Post) -->'."\n";617 602 $temp_stats .= '<p><b>10 Most Rated Post</b></p>'."\n"; 618 603 $temp_stats .= '<ul>'."\n"; … … 623 608 // WP-PostViews (10 Most Viewed Post) 624 609 if(function_exists('the_views')) { 625 $temp_stats .= '<!-- WP-PostViews (10 Most Viewed Post) -->'."\n";626 610 $temp_stats .= '<p><b>10 Most Viewed Post</b></p>'."\n"; 627 611 $temp_stats .= '<ul>'."\n"; … … 631 615 632 616 // Author Stats 633 $temp_stats .= '<!-- Author Stats -->'."\n";634 617 $temp_stats .= '<h2 class="pagetitle">Authors Stats</h2>'."\n"; 635 618 $temp_stats .= '<p><b>Authors</b></p>'."\n"; … … 639 622 640 623 // Comments' Members Stats 641 $temp_stats .= '<!-- Comments\' Members Stats -->'."\n";642 624 $temp_stats .= '<h2 class="pagetitle">Comments\' Members Stats</h2>'."\n"; 643 625 $temp_stats .= '<p><b>Comment Members</b></p>'."\n"; … … 647 629 648 630 // Misc Stats 649 $temp_stats .= '<!-- Misc Stats -->'."\n";650 631 $temp_stats .= '<h2 class="pagetitle">Misc Stats</h2>'."\n"; 651 632 652 633 // Post Categories 653 $temp_stats .= '<!-- Post Categories -->'."\n";654 634 $temp_stats .= '<p><b>Post Categories</b></p>'."\n"; 655 635 $temp_stats .= '<ul>'."\n"; … … 658 638 659 639 // Link Categories 660 $temp_stats .= '<!-- Link Categories -->'."\n";661 640 $temp_stats .= '<p><b>Link Categories</b></p>'."\n"; 662 641 $temp_stats .= '<ul>'."\n";
