Changeset 1643735
- Timestamp:
- 04/24/2017 10:23:57 AM (9 years ago)
- Location:
- os-html5-shortcodes
- Files:
-
- 25 added
- 5 edited
-
tags/1.3 (added)
-
tags/1.3/css (added)
-
tags/1.3/css/admin (added)
-
tags/1.3/css/admin/style-min.css (added)
-
tags/1.3/images (added)
-
tags/1.3/images/about.jpg (added)
-
tags/1.3/images/category.png (added)
-
tags/1.3/images/editor-icon.jpg (added)
-
tags/1.3/images/social.png (added)
-
tags/1.3/includes (added)
-
tags/1.3/includes/admin (added)
-
tags/1.3/includes/admin/meta-boxes (added)
-
tags/1.3/includes/admin/meta-boxes/class.oshtml5.shortcode.php (added)
-
tags/1.3/includes/admin/meta-boxes/views (added)
-
tags/1.3/includes/admin/meta-boxes/views/oshtml5.shortcode.php (added)
-
tags/1.3/includes/admin/oshtml5-about.php (added)
-
tags/1.3/includes/admin/oshtml5-editor.php (added)
-
tags/1.3/includes/admin/oshtml5-post-types.php (added)
-
tags/1.3/includes/admin/oshtml5-tinymce.php (added)
-
tags/1.3/includes/admin/oshtml5-widget.php (added)
-
tags/1.3/os-html5-shortcodes.php (added)
-
tags/1.3/readme.txt (added)
-
tags/1.3/screenshot-1.png (added)
-
tags/1.3/screenshot-2.png (added)
-
tags/1.3/screenshot-3.png (added)
-
trunk/includes/admin/meta-boxes/class.oshtml5.shortcode.php (modified) (1 diff)
-
trunk/includes/admin/oshtml5-about.php (modified) (2 diffs)
-
trunk/includes/admin/oshtml5-post-types.php (modified) (2 diffs)
-
trunk/os-html5-shortcodes.php (modified) (23 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
os-html5-shortcodes/trunk/includes/admin/meta-boxes/class.oshtml5.shortcode.php
r1522509 r1643735 10 10 * 11 11 * @class oshtml5MetaboxShortcode 12 * @version 1. 212 * @version 1.3 13 13 * @category Class 14 14 * @author Offshorent Solutions Pvt Ltd. | Jinesh.P.V -
os-html5-shortcodes/trunk/includes/admin/oshtml5-about.php
r1522509 r1643735 10 10 * 11 11 * @class oshtml5About 12 * @version 1. 212 * @version 1.3 13 13 * @category Class 14 14 * @author Offshorent Solutions Pvt Ltd. | Jinesh.P.V … … 40 40 * about_oshtml5_developer for ourteam blog 41 41 * 42 * @since 1. 242 * @since 1.3 43 43 */ 44 44 -
os-html5-shortcodes/trunk/includes/admin/oshtml5-post-types.php
r1522509 r1643735 10 10 * 11 11 * @class osHTML5PostTypes 12 * @version 1. 212 * @version 1.3 13 13 * @category Class 14 14 * @author Offshorent Solutions Pvt Ltd. | Jinesh.P.V … … 132 132 * Returns the main instance of osHTML5PostTypes to prevent the need to use globals. 133 133 * 134 * @since 1. 2134 * @since 1.3 135 135 * @return osHTML5PostTypes 136 136 */ -
os-html5-shortcodes/trunk/os-html5-shortcodes.php
r1522509 r1643735 4 4 Plugin URI: http://offshorent.com/blog/extensions/os-html5-shortcodes 5 5 Description: Include HTML codes uch as ad codes, javascript, video embedding, etc to your pages, posts or custom post type easily using shortcodes. 6 Version: 1. 26 Version: 1.3 7 7 Author: Offshorent Solutions Pvt Ltd. | Jinesh.P.V 8 8 Author URI: http://offshorent.com/ 9 Requires at least: 4. 010 Tested up to: 4. 6.19 Requires at least: 4.3 10 Tested up to: 4.7.4 11 11 License: GPL2 12 12 /* Copyright 2016-2019 OS HTML5 Shortcodes - Offshorent Softwares Pvt Ltd ( email: jinesh@offshorent.com ) … … 36 36 * 37 37 * @class osHTML5Shortcodes 38 * @version 1. 238 * @version 1.3 39 39 */ 40 40 … … 43 43 /** 44 44 * @var string 45 * @since 1. 246 */ 47 48 public $version = '1. 2';45 * @since 1.3 46 */ 47 48 public $version = '1.3'; 49 49 50 50 /** 51 51 * @var osHTML5Shortcodes The single instance of the class 52 * @since 1. 252 * @since 1.3 53 53 */ 54 54 … … 60 60 * Ensures only one instance of osHTML5Shortcodes is loaded or can be loaded. 61 61 * 62 * @since 1. 262 * @since 1.3 63 63 * @static 64 64 * @see OSBX() … … 76 76 * Cloning is forbidden. 77 77 * 78 * @since 1. 278 * @since 1.3 79 79 */ 80 80 81 81 public function __clone() { 82 _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1. 2' );82 _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.3' ); 83 83 } 84 84 … … 86 86 * Unserializing instances of this class is forbidden. 87 87 * 88 * @since 1. 288 * @since 1.3 89 89 */ 90 90 91 91 public function __wakeup() { 92 _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1. 2' );92 _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.3' ); 93 93 } 94 94 … … 96 96 * Get the plugin url. 97 97 * 98 * @since 1. 298 * @since 1.3 99 99 */ 100 100 … … 106 106 * Get the plugin path. 107 107 * 108 * @since 1. 2108 * @since 1.3 109 109 */ 110 110 … … 116 116 * Get Ajax URL. 117 117 * 118 * @since 1. 2118 * @since 1.3 119 119 */ 120 120 … … 127 127 * @access public 128 128 * @return osHTML5Shortcodes 129 * @since 1. 2129 * @since 1.3 130 130 */ 131 131 … … 155 155 /** 156 156 * Install osHTML5Shortcodes 157 * @since 1. 2157 * @since 1.3 158 158 */ 159 159 … … 169 169 /** 170 170 * Define osHTML5Shortcodes Constants 171 * @since 1. 2171 * @since 1.3 172 172 */ 173 173 … … 184 184 * includes admin defaults files 185 185 * 186 * @since 1. 2186 * @since 1.3 187 187 */ 188 188 … … 197 197 /** 198 198 * Init osHTML5Shortcodes when WordPress Initialises. 199 * @since 1. 2199 * @since 1.3 200 200 */ 201 201 … … 208 208 * Clean all output buffers 209 209 * 210 * @since 1. 2210 * @since 1.3 211 211 */ 212 212 … … 219 219 * Callback function 220 220 * 221 * @since 1. 2221 * @since 1.3 222 222 */ 223 223 … … 229 229 * Clean all output buffers 230 230 * 231 * @since 1. 2231 * @since 1.3 232 232 */ 233 233 … … 238 238 /** 239 239 * Admin init osHTML5Shortcodes when WordPress Initialises. 240 * @since 1. 2240 * @since 1.3 241 241 */ 242 242 … … 249 249 * Admin side style and javascript hook for osHTML5Shortcodes 250 250 * 251 * @since 1. 2251 * @since 1.3 252 252 */ 253 253 … … 260 260 * Filter hook for oshtml5_query_vars 261 261 * 262 * @since 1. 2262 * @since 1.3 263 263 */ 264 264 … … 272 272 * Action hook for oshtml5_query_vars 273 273 * 274 * @since 1. 2274 * @since 1.3 275 275 */ 276 276 … … 286 286 * Shortcode function for os-pricing-table 287 287 * 288 * @since 1. 2288 * @since 1.3 289 289 */ 290 290 … … 314 314 * Returns the main instance of osHTML5Shortcodes to prevent the need to use globals. 315 315 * 316 * @since 1. 2316 * @since 1.3 317 317 * @return osHTML5Shortcodes 318 318 */ -
os-html5-shortcodes/trunk/readme.txt
r1522509 r1643735 2 2 Contributors: offshorent 3 3 Tags: Include HTML codes uch as ad codes, javascript, video embedding, etc to your pages, posts or custom post type easily using shortcodes. 4 Requires at least: 4. 05 Tested up to: 4. 6.16 Stable tag: 1. 24 Requires at least: 4.3 5 Tested up to: 4.7.4 6 Stable tag: 1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 34 34 Minimum requirements: 35 35 36 Wordpress 3.0+37 PHP 5. x38 MySQL 4.x+36 Wordpress 4.3+ 37 PHP 5.4x 38 MySQL 5.2x+ 39 39 40 40 Installation from within backend: … … 79 79 = 1.2 = 80 80 * Fixed the errors 81 = 1.3 = 82 * Updated with new functions
Note: See TracChangeset
for help on using the changeset viewer.