Changeset 1302963
- Timestamp:
- 12/08/2015 01:38:40 PM (10 years ago)
- Location:
- timeline-blog
- Files:
-
- 18 added
- 2 edited
-
tags/1.2 (added)
-
tags/1.2/css (added)
-
tags/1.2/css/admin (added)
-
tags/1.2/css/admin/style.css (added)
-
tags/1.2/css/frontend-style.css (added)
-
tags/1.2/images (added)
-
tags/1.2/images/about.jpg (added)
-
tags/1.2/images/category.png (added)
-
tags/1.2/images/social.png (added)
-
tags/1.2/images/timeline.png (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/screenshot-1.png (added)
-
tags/1.2/screenshot-2.png (added)
-
tags/1.2/screenshot-3.png (added)
-
tags/1.2/templates (added)
-
tags/1.2/templates/single-timeline-template.php (added)
-
tags/1.2/templates/timeline-page-template.php (added)
-
tags/1.2/timeline-blog.php (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/timeline-blog.php (modified) (28 diffs)
Legend:
- Unmodified
- Added
- Removed
-
timeline-blog/trunk/readme.txt
r1289437 r1302963 3 3 Donate link: http://offshorent.com/ 4 4 Tags: Blog, Timeline, Timeline Blog, colorful blog, attractive blog, colorful category, category listing, tag listing, lags, category 5 Requires at least: 3. 65 Requires at least: 3.8 6 6 Tested up to: 4.3.1 7 Stable tag: 1. 17 Stable tag: 1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
timeline-blog/trunk/timeline-blog.php
r1289437 r1302963 4 4 * Plugin URI: http://offshorent.com/blog/extensions/os-timeline-blog 5 5 * Description: Create a timeline look and feel for your blog. 6 * Version: 1. 16 * Version: 1.2 7 7 * Author: Jinesh P.V, Team Leader - Offshorent Solutions Pvt Ltd 8 8 * Author URI: http://www.offshorent.com/ 9 * Requires at least: 3. 69 * Requires at least: 3.8 10 10 * Tested up to: 4.3.1 11 11 **/ … … 21 21 * 22 22 * @class timelineBlog 23 * @version 1. 123 * @version 1.2 24 24 */ 25 25 … … 28 28 /** 29 29 * @var string 30 * @since 1. 131 */ 32 33 public $version = '1. 1';30 * @since 1.2 31 */ 32 33 public $version = '1.2'; 34 34 35 35 /** 36 36 * @var timelineBlog The single instance of the class 37 * @since 1. 137 * @since 1.2 38 38 */ 39 39 … … 45 45 * Ensures only one instance of timelineBlog is loaded or can be loaded. 46 46 * 47 * @since 1. 147 * @since 1.2 48 48 * @static 49 49 * @return timelineBlog - Main instance … … 60 60 * Cloning is forbidden. 61 61 * 62 * @since 1. 162 * @since 1.2 63 63 */ 64 64 65 65 public function __clone() { 66 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'timeline' ), '1. 1' );66 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'timeline' ), '1.2' ); 67 67 } 68 68 … … 70 70 * Unserializing instances of this class is forbidden. 71 71 * 72 * @since 1. 172 * @since 1.2 73 73 */ 74 74 75 75 public function __wakeup() { 76 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'timeline' ), '1. 1' );76 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'timeline' ), '1.2' ); 77 77 } 78 78 … … 80 80 * Get the plugin url. 81 81 * 82 * @since 1. 182 * @since 1.2 83 83 */ 84 84 … … 90 90 * Get the plugin path. 91 91 * 92 * @since 1. 192 * @since 1.2 93 93 */ 94 94 … … 100 100 * Get Ajax URL. 101 101 * 102 * @since 1. 1102 * @since 1.2 103 103 */ 104 104 … … 111 111 * @access public 112 112 * @return timelineBlog 113 * @since 1. 1113 * @since 1.2 114 114 */ 115 115 … … 139 139 /** 140 140 * Install timelineBlog 141 * @since 1. 1141 * @since 1.2 142 142 */ 143 143 … … 153 153 /** 154 154 * Define timelineBlog Constants 155 * @since 1. 1155 * @since 1.2 156 156 */ 157 157 … … 170 170 * includes admin defaults files 171 171 * 172 * @since 1. 1172 * @since 1.2 173 173 */ 174 174 … … 178 178 /** 179 179 * Init timelineBlog when WordPress Initialises. 180 * @since 1. 1180 * @since 1.2 181 181 */ 182 182 … … 188 188 /** 189 189 * Add web portfolio image sizes to WP 190 * @since 1. 1190 * @since 1.2 191 191 */ 192 192 public function add_image_sizes() { … … 199 199 * Clean all output buffers 200 200 * 201 * @since 1. 1201 * @since 1.2 202 202 */ 203 203 … … 210 210 * Callback function 211 211 * 212 * @since 1. 1212 * @since 1.2 213 213 */ 214 214 … … 220 220 * Clean all output buffers 221 221 * 222 * @since 1. 1222 * @since 1.2 223 223 */ 224 224 … … 230 230 * Add admin menu for timeline blog 231 231 * 232 * @since 1. 1232 * @since 1.2 233 233 */ 234 234 … … 242 242 * about_timeline_developer for timeline blog 243 243 * 244 * @since 1. 1244 * @since 1.2 245 245 */ 246 246 … … 327 327 * Setting function for timeline blog 328 328 * 329 * @since 1. 1329 * @since 1.2 330 330 */ 331 331 … … 480 480 /** 481 481 * Admin init timelineBlog when WordPress Initialises. 482 * @since 1. 1482 * @since 1.2 483 483 */ 484 484 … … 494 494 /** 495 495 * Sanitize each setting field as needed 496 * @since 1. 1496 * @since 1.2 497 497 */ 498 498 … … 554 554 * admin style hook for timelineBlog 555 555 * 556 * @since 1. 1556 * @since 1.2 557 557 */ 558 558 … … 564 564 * Frontend style hook for timelineBlog 565 565 * 566 * @since 1. 1566 * @since 1.2 567 567 */ 568 568 … … 747 747 /** 748 748 * timeline_page_template 749 * @since 1. 1749 * @since 1.2 750 750 */ 751 751 … … 765 765 /** 766 766 * timeline_excerpt_more 767 * @since 1. 1767 * @since 1.2 768 768 */ 769 769 … … 782 782 * Returns the main instance of timelineBlog to prevent the need to use globals. 783 783 * 784 * @since 1. 1784 * @since 1.2 785 785 * @return timelineBlog 786 786 */
Note: See TracChangeset
for help on using the changeset viewer.