Changeset 1522461
- Timestamp:
- 10/26/2016 12:37:27 PM (9 years ago)
- Location:
- os-related-posts
- Files:
-
- 22 added
- 2 edited
-
tags/2.3 (added)
-
tags/2.3/bxslider (added)
-
tags/2.3/bxslider/images (added)
-
tags/2.3/bxslider/images/bx_loader.gif (added)
-
tags/2.3/bxslider/images/controls.png (added)
-
tags/2.3/bxslider/jquery.bxslider.css (added)
-
tags/2.3/bxslider/jquery.bxslider.js (added)
-
tags/2.3/bxslider/jquery.bxslider.min.js (added)
-
tags/2.3/css (added)
-
tags/2.3/css/admin (added)
-
tags/2.3/css/admin/style.css (added)
-
tags/2.3/css/wprp-style.css (added)
-
tags/2.3/images (added)
-
tags/2.3/images/about.jpg (added)
-
tags/2.3/images/social.png (added)
-
tags/2.3/images/timeline.png (added)
-
tags/2.3/os-related-posts.php (added)
-
tags/2.3/readme.txt (added)
-
tags/2.3/screenshot-1.png (added)
-
tags/2.3/screenshot-2.png (added)
-
tags/2.3/screenshot-3.png (added)
-
tags/2.3/screenshot-4.png (added)
-
trunk/os-related-posts.php (modified) (24 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
os-related-posts/trunk/os-related-posts.php
r1302961 r1522461 4 4 * Plugin URI: http://offshorent.com/blog/extensions/os-related-posts 5 5 * Description: The OS Related Posts feature scans all of your posts, analyzes them, and lets you show contextual posts under the same category. 6 * Version: 2. 27 * Author: Jinesh, Senior Software Engineer6 * Version: 2.3 7 * Author: Offshorent Solutions Pvt Ltd. | Jinesh.P.V 8 8 * Author URI: http://www.offshorent.com/ 9 * Requires at least: 3.810 * Tested up to: 4. 3.19 * Requires at least: 4.0 10 * Tested up to: 4.6.1 11 11 **/ 12 12 … … 21 21 * 22 22 * @class OSRelatedPosts 23 * @version 2. 223 * @version 2.3 24 24 */ 25 25 final class OSRelatedPosts { … … 27 27 /** 28 28 * @var string 29 * @since 2. 230 */ 31 32 public $version = '2. 2';29 * @since 2.3 30 */ 31 32 public $version = '2.3'; 33 33 34 34 /** 35 35 * @var OSRelatedPosts The single instance of the class 36 * @since 2. 236 * @since 2.3 37 37 */ 38 38 … … 44 44 * Ensures only one instance of OSRelatedPosts is loaded or can be loaded. 45 45 * 46 * @since 2. 246 * @since 2.3 47 47 * @static 48 48 * @return OSRelatedPosts - Main instance … … 59 59 * Cloning is forbidden. 60 60 * 61 * @since 2. 261 * @since 2.3 62 62 */ 63 63 64 64 public function __clone() { 65 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2. 2' );65 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.3' ); 66 66 } 67 67 … … 69 69 * Unserializing instances of this class is forbidden. 70 70 * 71 * @since 2. 271 * @since 2.3 72 72 */ 73 73 74 74 public function __wakeup() { 75 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2. 2' );75 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.3' ); 76 76 } 77 77 … … 79 79 * Get the plugin url. 80 80 * 81 * @since 2. 281 * @since 2.3 82 82 */ 83 83 … … 89 89 * Get the plugin path. 90 90 * 91 * @since 2. 291 * @since 2.3 92 92 */ 93 93 … … 99 99 * Get Ajax URL. 100 100 * 101 * @since 2. 2101 * @since 2.3 102 102 */ 103 103 … … 110 110 * @access public 111 111 * @return OSRelatedPosts 112 * @since 2. 2112 * @since 2.3 113 113 */ 114 114 … … 135 135 /** 136 136 * Install OSRelatedPosts 137 * @since 2. 2137 * @since 2.3 138 138 */ 139 139 … … 149 149 /** 150 150 * Define OSRelatedPosts Constants 151 * @since 2. 2151 * @since 2.3 152 152 */ 153 153 … … 166 166 * includes admin defaults files 167 167 * 168 * @since 2. 2168 * @since 2.3 169 169 */ 170 170 … … 174 174 /** 175 175 * Init OSRelatedPosts when WordPress Initialises. 176 * @since 2. 2176 * @since 2.3 177 177 */ 178 178 … … 186 186 * Clean all output buffers 187 187 * 188 * @since 2. 2188 * @since 2.3 189 189 */ 190 190 … … 197 197 * Callback function 198 198 * 199 * @since 2. 2199 * @since 2.3 200 200 */ 201 201 … … 207 207 * Clean all output buffers 208 208 * 209 * @since 2. 2209 * @since 2.3 210 210 */ 211 211 … … 217 217 * Add admin menu for os_related_posts blog 218 218 * 219 * @since 2. 2219 * @since 2.3 220 220 */ 221 221 … … 229 229 * about_os_related_posts_developer for os_related_posts blog 230 230 * 231 * @since 2. 2231 * @since 2.3 232 232 */ 233 233 … … 314 314 * Setting function for os_related_posts blog 315 315 * 316 * @since 2. 2316 * @since 2.3 317 317 */ 318 318 … … 459 459 /** 460 460 * Admin init OSRelatedPosts when WordPress Initialises. 461 * @since 2. 2461 * @since 2.3 462 462 */ 463 463 … … 473 473 /** 474 474 * Sanitize each setting field as needed 475 * @since 2. 2475 * @since 2.3 476 476 */ 477 477 … … 538 538 * Frontend style hook for OSRelatedPosts 539 539 * 540 * @since 2. 2540 * @since 2.3 541 541 */ 542 542 … … 746 746 * Returns the main instance of OSRelatedPosts to prevent the need to use globals. 747 747 * 748 * @since 2. 2748 * @since 2.3 749 749 * @return OSRelatedPosts 750 750 */ -
os-related-posts/trunk/readme.txt
r1302961 r1522461 2 2 Contributors: offshorent 3 3 Tags: slider, responsive slider, slider with caption, carousel slider, carousel, thumbnail slider, ticker 4 Requires at least: 3.05 Tested up to: 4. 3.16 Stable tag: 2. 24 Requires at least: 4.0 5 Tested up to: 4.6.1 6 Stable tag: 2.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.