CMS Tree Page View - Version 0.8.2

Version Description

  • Celebrating more than 100.000 downloads and as a gift to you, the user of this plugin, I have removed the "Support the author"-text from the right column. No more nagging! Donations are still welcome though...
Download this release

Release Info

Developer eskapism
Plugin Icon wp plugin CMS Tree Page View
Version 0.8.2
Comparing to
See all releases

Code changes from version 0.8.1 to 0.8.2

Files changed (3) hide show
  1. functions.php +6 -1
  2. index.php +3 -3
  3. readme.txt +4 -1
functions.php CHANGED
@@ -446,7 +446,10 @@ function cms_tpv_pages_page() {
446
  ?>
447
  <div class="wrap">
448
  <h2><?php echo ($post_type_object->labels->name); ?> Tree View</h2>
449
-
 
 
 
450
  <div class="bonny-plugins-inner-sidebar">
451
  <h3>Support the author</h3>
452
  <p>
@@ -484,6 +487,8 @@ function cms_tpv_pages_page() {
484
 
485
 
486
  </div>
 
 
487
 
488
  <?php
489
  // cms_tpv_show_annoying_box();
446
  ?>
447
  <div class="wrap">
448
  <h2><?php echo ($post_type_object->labels->name); ?> Tree View</h2>
449
+
450
+ <?php
451
+ /*
452
+ Not so much nagging, since I'm a nice guy.
453
  <div class="bonny-plugins-inner-sidebar">
454
  <h3>Support the author</h3>
455
  <p>
487
 
488
 
489
  </div>
490
+ */
491
+ ?>
492
 
493
  <?php
494
  // cms_tpv_show_annoying_box();
index.php CHANGED
@@ -2,8 +2,8 @@
2
  /*
3
  Plugin Name: CMS Tree Page View
4
  Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
5
- Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree you to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
6
- Version: 0.8
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -28,7 +28,7 @@ License: GPL2
28
  #require("functions.php");
29
  require(dirname(__FILE__)."/functions.php");
30
 
31
- define( "CMS_TPV_VERSION", "0.8");
32
  define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
2
  /*
3
  Plugin Name: CMS Tree Page View
4
  Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
5
+ Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree view to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
6
+ Version: 0.8.2
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
28
  #require("functions.php");
29
  require(dirname(__FILE__)."/functions.php");
30
 
31
+ define( "CMS_TPV_VERSION", "0.8.2");
32
  define( "CMS_TPV_URL", WP_PLUGIN_URL . '/cms-tree-page-view/');
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
4
  Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 0.8.1
8
 
9
  Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
10
 
@@ -85,6 +85,9 @@ Now the tree with the pages will be visible both on the dashboard and in the men
85
 
86
  == Changelog ==
87
 
 
 
 
88
  = 0.8.1 =
89
  - Polish translation added.
90
 
4
  Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 0.8.2
8
 
9
  Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
10
 
85
 
86
  == Changelog ==
87
 
88
+ = 0.8.2 =
89
+ - Celebrating more than 100.000 downloads and as a gift to you, the user of this plugin, I have removed the "Support the author"-text from the right column. No more nagging! Donations are still welcome though...
90
+
91
  = 0.8.1 =
92
  - Polish translation added.
93