Changeset 2694877
- Timestamp:
- 03/16/2022 02:37:32 PM (4 years ago)
- Location:
- cc-list-posts
- Files:
-
- 11 added
- 5 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/.htaccess (added)
-
tags/1.0.1/AUTHORS.txt (added)
-
tags/1.0.1/LICENSE.txt (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/class-plugin.php (added)
-
tags/1.0.1/class-singleton.php (added)
-
tags/1.0.1/functions.php (added)
-
tags/1.0.1/index.html (added)
-
tags/1.0.1/plugin.php (added)
-
tags/1.0.1/screenshot-1.png (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/class-plugin.php (modified) (1 diff)
-
trunk/class-singleton.php (modified) (2 diffs)
-
trunk/functions.php (modified) (1 diff)
-
trunk/plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cc-list-posts/trunk/README.txt
r1562616 r2694877 3 3 Tags: wp_list_posts, wp_list_pages, wp_get_archives, shortcode, pagination, sitemap, Clearcode, PiotrPress 4 4 Requires at least: 4.7 5 Tested up to: 4.75 Tested up to: 5.9.2 6 6 Stable tag: trunk 7 7 License: GPLv3 … … 71 71 == Changelog == 72 72 73 = 1.0.1 = 74 *Release date: 16.03.2022* 75 76 * Added PHP 8.0 support. 77 73 78 = 1.0.0 = 74 79 *Release date: 15.12.2016* -
cc-list-posts/trunk/class-plugin.php
r1562616 r2694877 2 2 3 3 /* 4 Copyright (C) 20 16by Clearcode <http://clearcode.cc>4 Copyright (C) 2022 by Clearcode <http://clearcode.cc> 5 5 and associates (see AUTHORS.txt file). 6 6 -
cc-list-posts/trunk/class-singleton.php
r1562616 r2694877 2 2 3 3 /* 4 Copyright (C) 20 16by Clearcode <http://clearcode.cc>4 Copyright (C) 2022 by Clearcode <http://clearcode.cc> 5 5 and associates (see AUTHORS.txt file). 6 6 … … 27 27 if ( ! class_exists( __NAMESPACE__ . '\Singleton' ) ) { 28 28 abstract class Singleton { 29 final private function __clone() {}30 29 protected function __construct() {} 31 32 30 public static function instance() { 33 31 static $instance = null; -
cc-list-posts/trunk/functions.php
r1562616 r2694877 2 2 3 3 /* 4 Copyright (C) 20 16by Clearcode <http://clearcode.cc>4 Copyright (C) 2022 by Clearcode <http://clearcode.cc> 5 5 and associates (see AUTHORS.txt file). 6 6 -
cc-list-posts/trunk/plugin.php
r1562616 r2694877 5 5 Plugin URI: https://wordpress.org/plugins/cc-list-posts 6 6 Description: This plugin adds similar to `wp_list_pages`, missing function and shortcode `wp_list_posts` with pagination support. 7 Version: 1.0. 07 Version: 1.0.1 8 8 Author: Clearcode 9 9 Author URI: https://clearcode.cc … … 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.txt 14 14 15 Copyright (C) 20 16by Clearcode <http://clearcode.cc>15 Copyright (C) 2022 by Clearcode <http://clearcode.cc> 16 16 and associates (see AUTHORS.txt file). 17 17
Note: See TracChangeset
for help on using the changeset viewer.