CMS Tree Page View - Version 1.6.5

Version Description

(May 2022) =

PHP8 compatibility update. Props @cjhaas.

Download this release

Release Info

Developer jchristopher
Plugin Icon wp plugin CMS Tree Page View
Version 1.6.5
Comparing to
See all releases

Code changes from version 1.6.4 to 1.6.5

Files changed (3) hide show
  1. functions.php +1 -1
  2. index.php +2 -2
  3. readme.txt +6 -2
functions.php CHANGED
@@ -1336,7 +1336,7 @@ function cms_tpv_parse_query($q) {
1336
  * Output JSON for the children of a node
1337
  * $arrOpenChilds = array with id of pages to open children on
1338
  */
1339
- function cms_tpv_print_childs($pageID, $view = "all", $arrOpenChilds = null, $post_type) {
1340
 
1341
  $arrPages = cms_tpv_get_pages("parent=$pageID&view=$view&post_type=$post_type");
1342
 
1336
  * Output JSON for the children of a node
1337
  * $arrOpenChilds = array with id of pages to open children on
1338
  */
1339
+ function cms_tpv_print_childs($pageID, $view = "all", $arrOpenChilds = null, $post_type = "") {
1340
 
1341
  $arrPages = cms_tpv_get_pages("parent=$pageID&view=$view&post_type=$post_type");
1342
 
index.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://github.com/jchristopher/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
  Text Domain: cms-tree-page-view
7
  Domain Path: /languages/
8
- Version: 1.6.4
9
  Author: Jon Christopher
10
  Author URI: https://jonchristopher.us/
11
  License: GPL2
@@ -29,7 +29,7 @@ License: GPL2
29
 
30
  #require("functions.php");
31
 
32
- define( "CMS_TPV_VERSION", "1.6.3");
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
35
  require(dirname(__FILE__) . "/functions.php");
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
  Text Domain: cms-tree-page-view
7
  Domain Path: /languages/
8
+ Version: 1.6.5
9
  Author: Jon Christopher
10
  Author URI: https://jonchristopher.us/
11
  License: GPL2
29
 
30
  #require("functions.php");
31
 
32
+ define( "CMS_TPV_VERSION", "1.6.5");
33
  define( "CMS_TPV_NAME", "CMS Tree Page View");
34
 
35
  require(dirname(__FILE__) . "/functions.php");
readme.txt CHANGED
@@ -4,8 +4,8 @@ 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
  Text Domain: cms-tree-page-view
6
  Requires at least: 3.8
7
- Tested up to: 5.9.0
8
- Stable tag: 1.6.4
9
 
10
  Adds a tree view of all pages & custom posts. Get a great overview + options to drag & drop to reorder & option to add multiple pages.
11
 
@@ -116,6 +116,10 @@ Now the tree with the pages will be visible both on the dashboard and in the men
116
 
117
  == Changelog ==
118
 
 
 
 
 
119
  = 1.6.4 (December 2020) =
120
 
121
  Please [create Issues](https://github.com/jchristopher/cms-tree-page-view/issues) for any jQuery deprecations (or other issues) you come across!
4
  Tags: page, pages, posts, custom posts, tree, cms, dashboard, overview, drag-and-drop, rearrange, management, manage, admin
5
  Text Domain: cms-tree-page-view
6
  Requires at least: 3.8
7
+ Tested up to: 5.9.3
8
+ Stable tag: 1.6.5
9
 
10
  Adds a tree view of all pages & custom posts. Get a great overview + options to drag & drop to reorder & option to add multiple pages.
11
 
116
 
117
  == Changelog ==
118
 
119
+ = 1.6.5 (May 2022) =
120
+
121
+ PHP8 compatibility update. Props @cjhaas.
122
+
123
  = 1.6.4 (December 2020) =
124
 
125
  Please [create Issues](https://github.com/jchristopher/cms-tree-page-view/issues) for any jQuery deprecations (or other issues) you come across!