Changeset 1478078
- Timestamp:
- 08/18/2016 06:04:36 PM (10 years ago)
- Location:
- wp-post-expires
- Files:
-
- 3 deleted
- 2 edited
- 9 copied
-
tags/1.0.2 (copied) (copied from wp-post-expires/trunk)
-
tags/1.0.2/assets (copied) (copied from wp-post-expires/trunk/assets)
-
tags/1.0.2/languages (copied) (copied from wp-post-expires/trunk/languages)
-
tags/1.0.2/languages/default.po (deleted)
-
tags/1.0.2/languages/wp-post-expires-ru_RU.mo (copied) (copied from wp-post-expires/trunk/languages/wp-post-expires-ru_RU.mo)
-
tags/1.0.2/languages/wp-post-expires-ru_RU.po (copied) (copied from wp-post-expires/trunk/languages/wp-post-expires-ru_RU.po)
-
tags/1.0.2/languages/wp-post-expires.pot (copied) (copied from wp-post-expires/trunk/languages/wp-post-expires.pot)
-
tags/1.0.2/languages/xn-wppe-ru_RU.mo (deleted)
-
tags/1.0.2/languages/xn-wppe-ru_RU.po (deleted)
-
tags/1.0.2/readme.txt (copied) (copied from wp-post-expires/trunk/readme.txt) (2 diffs)
-
tags/1.0.2/uninstall.php (copied) (copied from wp-post-expires/trunk/uninstall.php)
-
tags/1.0.2/wp-post-expires.php (copied) (copied from wp-post-expires/trunk/wp-post-expires.php) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-post-expires.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-post-expires/tags/1.0.2/readme.txt
r1477304 r1478078 1 1 === WP Post Expires === 2 2 Contributors: X-NicON 3 Donate link: 3 Donate link: https://xnicon.ru/donate-wp-post-expires 4 4 Tags: expired post, posts expiring, expiration, expire, wordpress post expiry 5 5 Requires at least: 3.0 6 6 Tested up to: 4.6 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 == Changelog == 41 41 42 = 1.0.2 = 43 44 fix notice and accessing static property 45 42 46 = 1.0.1 = 43 47 fixed translation -
wp-post-expires/tags/1.0.2/wp-post-expires.php
r1477304 r1478078 3 3 Plugin Name: WP Post Expires 4 4 Description: A simple plugin allow to set the posts, the time after which will be performed one of 3 actions: "Add prefix to title", "Move to drafts", "Move to trash". 5 Version: 1.0 5 Version: 1.0.2 6 6 Author: X-NicON 7 Author URI: http ://xnicon.ru7 Author URI: https://xnicon.ru 8 8 License: GPL2 9 9 Text Domain: wp-post-expires … … 30 30 31 31 private $url_assets; 32 public static$settings = array();32 public $settings = array(); 33 33 34 34 public function __construct() { … … 62 62 63 63 if(!isset($settings_load['action'])) { 64 $ this->settings['action'] = 'add_prefix';64 $settings_load['action'] = 'add_prefix'; 65 65 } 66 66 … … 215 215 } 216 216 217 function xn_wppe_is_expired($post_id = 0){217 public static function xn_wppe_is_expired($post_id = 0){ 218 218 219 219 $expires = get_post_meta($post_id, 'xn-wppe-expiration', true); -
wp-post-expires/trunk/readme.txt
r1477304 r1478078 1 1 === WP Post Expires === 2 2 Contributors: X-NicON 3 Donate link: 3 Donate link: https://xnicon.ru/donate-wp-post-expires 4 4 Tags: expired post, posts expiring, expiration, expire, wordpress post expiry 5 5 Requires at least: 3.0 6 6 Tested up to: 4.6 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 == Changelog == 41 41 42 = 1.0.2 = 43 44 fix notice and accessing static property 45 42 46 = 1.0.1 = 43 47 fixed translation -
wp-post-expires/trunk/wp-post-expires.php
r1477304 r1478078 3 3 Plugin Name: WP Post Expires 4 4 Description: A simple plugin allow to set the posts, the time after which will be performed one of 3 actions: "Add prefix to title", "Move to drafts", "Move to trash". 5 Version: 1.0 5 Version: 1.0.2 6 6 Author: X-NicON 7 Author URI: http ://xnicon.ru7 Author URI: https://xnicon.ru 8 8 License: GPL2 9 9 Text Domain: wp-post-expires … … 30 30 31 31 private $url_assets; 32 public static$settings = array();32 public $settings = array(); 33 33 34 34 public function __construct() { … … 62 62 63 63 if(!isset($settings_load['action'])) { 64 $ this->settings['action'] = 'add_prefix';64 $settings_load['action'] = 'add_prefix'; 65 65 } 66 66 … … 215 215 } 216 216 217 function xn_wppe_is_expired($post_id = 0){217 public static function xn_wppe_is_expired($post_id = 0){ 218 218 219 219 $expires = get_post_meta($post_id, 'xn-wppe-expiration', true);
Note: See TracChangeset
for help on using the changeset viewer.