Changeset 1302957
- Timestamp:
- 12/08/2015 01:35:42 PM (10 years ago)
- Location:
- os-our-team
- Files:
-
- 36 added
- 2 edited
-
tags/1.4 (added)
-
tags/1.4/css (added)
-
tags/1.4/css/admin (added)
-
tags/1.4/css/admin/style-min.css (added)
-
tags/1.4/css/frontend-style-min.css (added)
-
tags/1.4/images (added)
-
tags/1.4/images/about.jpg (added)
-
tags/1.4/images/category.png (added)
-
tags/1.4/images/delete.png (added)
-
tags/1.4/images/loading.gif (added)
-
tags/1.4/images/social.png (added)
-
tags/1.4/images/timeline.png (added)
-
tags/1.4/includes (added)
-
tags/1.4/includes/admin (added)
-
tags/1.4/includes/admin/meta-boxes (added)
-
tags/1.4/includes/admin/meta-boxes/class-os-our-team-custom.php (added)
-
tags/1.4/includes/admin/meta-boxes/class-os-our-team-social.php (added)
-
tags/1.4/includes/admin/meta-boxes/views (added)
-
tags/1.4/includes/admin/meta-boxes/views/os-out-team-custom.php (added)
-
tags/1.4/includes/admin/meta-boxes/views/os-out-team-social.php (added)
-
tags/1.4/includes/admin/os-our-team-about.php (added)
-
tags/1.4/includes/admin/os-our-team-post-types.php (added)
-
tags/1.4/includes/admin/os-our-team-settings.php (added)
-
tags/1.4/includes/os-our-team-shortcode.php (added)
-
tags/1.4/js (added)
-
tags/1.4/js/admin (added)
-
tags/1.4/js/admin/custom-min.js (added)
-
tags/1.4/js/flip-min.js (added)
-
tags/1.4/js/init-min.js (added)
-
tags/1.4/os-our-team.php (added)
-
tags/1.4/readme.txt (added)
-
tags/1.4/screenshot-1.png (added)
-
tags/1.4/screenshot-2.png (added)
-
tags/1.4/screenshot-3.png (added)
-
tags/1.4/screenshot-4.png (added)
-
tags/1.4/screenshot-5.png (added)
-
trunk/os-our-team.php (modified) (22 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
os-our-team/trunk/os-our-team.php
r1298845 r1302957 4 4 * Plugin URI: http://offshorent.com/blog/extensions/os-our-team 5 5 * Description: Display your employees, team members, or any type of list. 6 * Version: 1. 36 * Version: 1.4 7 7 * Author: Jinesh, Team Leader Wordpress, Offshorent Solutions Pvt Ltd. 8 8 * Author URI: http://www.offshorent.com/ … … 21 21 * 22 22 * @class ourTeam 23 * @version 1. 323 * @version 1.4 24 24 */ 25 25 … … 28 28 /** 29 29 * @var string 30 * @since 1. 331 */ 32 33 public $version = '1. 3';30 * @since 1.4 31 */ 32 33 public $version = '1.4'; 34 34 35 35 /** 36 36 * @var ourTeam The single instance of the class 37 * @since 1. 337 * @since 1.4 38 38 */ 39 39 … … 45 45 * Ensures only one instance of ourTeam is loaded or can be loaded. 46 46 * 47 * @since 1. 347 * @since 1.4 48 48 * @static 49 49 * @return ourTeam - Main instance … … 60 60 * Cloning is forbidden. 61 61 * 62 * @since 1. 362 * @since 1.4 63 63 */ 64 64 65 65 public function __clone() { 66 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'our-team' ), '1. 3' );66 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'our-team' ), '1.4' ); 67 67 } 68 68 … … 70 70 * Unserializing instances of this class is forbidden. 71 71 * 72 * @since 1. 372 * @since 1.4 73 73 */ 74 74 75 75 public function __wakeup() { 76 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'our-team' ), '1. 3' );76 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'our-team' ), '1.4' ); 77 77 } 78 78 … … 80 80 * Get the plugin url. 81 81 * 82 * @since 1. 382 * @since 1.4 83 83 */ 84 84 … … 90 90 * Get the plugin path. 91 91 * 92 * @since 1. 392 * @since 1.4 93 93 */ 94 94 … … 100 100 * Get Ajax URL. 101 101 * 102 * @since 1. 3102 * @since 1.4 103 103 */ 104 104 … … 111 111 * @access public 112 112 * @return ourTeam 113 * @since 1. 3113 * @since 1.4 114 114 */ 115 115 … … 130 130 add_action( 'admin_enqueue_scripts', array( $this, 'our_team_admin_styles' ) ); 131 131 add_action( 'wp_enqueue_scripts', array( $this, 'our_team_frontend_styles' ) ); 132 133 //Filter Hook 134 add_filter( 'widget_text', 'do_shortcode', 11 ); 132 135 } 133 136 134 137 /** 135 138 * Install ourTeam 136 * @since 1. 3139 * @since 1.4 137 140 */ 138 141 … … 148 151 /** 149 152 * Define ourTeam Constants 150 * @since 1. 3153 * @since 1.4 151 154 */ 152 155 … … 165 168 * includes defaults files 166 169 * 167 * @since 1. 3170 * @since 1.4 168 171 */ 169 172 … … 180 183 /** 181 184 * Init ourTeam when WordPress Initialises. 182 * @since 1. 3185 * @since 1.4 183 186 */ 184 187 … … 190 193 /** 191 194 * Add web portfolio image sizes to WP 192 * @since 1. 3195 * @since 1.4 193 196 */ 194 197 public function add_image_sizes() { … … 200 203 * Clean all output buffers 201 204 * 202 * @since 1. 3205 * @since 1.4 203 206 */ 204 207 … … 211 214 * Callback function 212 215 * 213 * @since 1. 3216 * @since 1.4 214 217 */ 215 218 … … 221 224 * Clean all output buffers 222 225 * 223 * @since 1. 3226 * @since 1.4 224 227 */ 225 228 … … 250 253 * admin style hook for ourTeam 251 254 * 252 * @since 1. 3255 * @since 1.4 253 256 */ 254 257 255 258 public function our_team_admin_styles() { 256 259 wp_enqueue_style( 'admin-style', plugins_url( 'css/admin/style-min.css', __FILE__ ) ); 257 wp_enqueue_script( 'admin-init', plugins_url( 'js/admin/custom-min.js', __FILE__ ), array(), '1. 3.2', true );260 wp_enqueue_script( 'admin-init', plugins_url( 'js/admin/custom-min.js', __FILE__ ), array(), '1.4.2', true ); 258 261 wp_localize_script( 'admin-init', 'ot_admin_ajax', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); 259 262 } … … 262 265 * Frontend style hook for ourTeam 263 266 * 264 * @since 1. 3267 * @since 1.4 265 268 */ 266 269 … … 319 322 wp_enqueue_style( 'os-team-main', plugins_url( 'css/frontend-style-min.css', __FILE__ ) ); 320 323 wp_enqueue_script( 'os-team-flip', plugins_url( 'js/flip-min.js', __FILE__ ), array(), '2.0.2', true ); 321 wp_enqueue_script( 'os-team-init', plugins_url( 'js/init-min.js', __FILE__ ), array(), '1.1. 3', true );324 wp_enqueue_script( 'os-team-init', plugins_url( 'js/init-min.js', __FILE__ ), array(), '1.1.4', true ); 322 325 wp_add_inline_style( 'os-team-main', $custom_css ); 323 326 } … … 330 333 * Returns the main instance of ourTeam to prevent the need to use globals. 331 334 * 332 * @since 1. 3335 * @since 1.4 333 336 * @return ourTeam 334 337 */ -
os-our-team/trunk/readme.txt
r1298845 r1302957 4 4 Requires at least: 3.8 5 5 Tested up to: 4.3.1 6 Stable tag: 1. 36 Stable tag: 1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 4. OS Our Team - Muse Layout 87 87 5. OS Our Team - Grid Layout 88 89 == Changelog == 90 = 1.0 = 91 * Initial release 92 = 1.1 93 * Design issue fixed 94 = 1.2 95 * Muse Layout responsive issue fixed 96 = 1.3 97 * Improving the loading speed 98 = 1.4 99 * Shortcode issue with text wigjet fixed
Note: See TracChangeset
for help on using the changeset viewer.