Changeset 723484
- Timestamp:
- 06/06/2013 12:45:31 PM (13 years ago)
- Location:
- wp-glossary/trunk
- Files:
-
- 2 added
- 5 edited
-
class/wpg-admin.class.php (modified) (1 diff)
-
class/wpg-shortcode-glossary.class.php (modified) (1 diff)
-
class/wpg.class.php (modified) (1 diff)
-
lang/wp-glossary-fr_FR.mo (added)
-
lang/wp-glossary-fr_FR.po (added)
-
readme.txt (modified) (2 diffs)
-
wp-glossary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-glossary/trunk/class/wpg-admin.class.php
r716063 r723484 4 4 */ 5 5 class WPG_Admin{ 6 static $base, $base_url; 6 static $base; 7 static $base_url; 7 8 8 public function __construct( ) {9 public function __construct( $plugin_base ) { 9 10 self::$base = $plugin_base . '/class'; 10 11 self::$base_url = plugins_url( '', dirname(__FILE__) ); -
wp-glossary/trunk/class/wpg-shortcode-glossary.class.php
r716073 r723484 80 80 81 81 // Get WP Glossary options 82 $glossary_options = get_option( 'wp_glossary' );82 $glossary_options = get_option( 'wp_glossary', array() ); 83 83 84 84 // JS data to pass through to jQuery libraries -
wp-glossary/trunk/class/wpg.class.php
r716063 r723484 71 71 $options = get_option( 'wp_glossary', array() ); 72 72 $qtipstyle = isset( $options['qtipstyle'] ) ? $options['qtipstyle']: 'cream'; 73 if( $qtip != 'off' ):73 if( $qtipstyle != 'off' ): 74 74 wp_register_script( 'jquery-tooltip', $this->base_url() . '/ext/qtip.js', array('jquery') ); 75 75 wp_register_script( 'wp-glossary-js', $this->base_url() . '/js/wp-glossary-qtip.js', array('jquery-tooltip') ); -
wp-glossary/trunk/readme.txt
r716192 r723484 6 6 Requires at least: 3.0 7 7 Tested up to: 3.6 8 Stable tag: 2.4 8 Stable tag: 2.4.1 9 9 License: GPLv2 or later 10 10 … … 73 73 74 74 == Changelog == 75 76 = 2.4.1 = 77 * NEW Language: French (Thank you Walid) 78 * FIX Glossary tooltip 'off' (props Epema) 79 * FIX Code warnings 75 80 76 81 = 2.4 = -
wp-glossary/trunk/wp-glossary.php
r716192 r723484 5 5 * Description: Build a glossary of terms and link your post content to it. 6 6 * Author: TCBarrett 7 * Version: 2.4 7 * Version: 2.4.1 8 8 * Author URI: http://www.tcbarrett.com/ 9 9 * Text Domain: wp-glossary … … 21 21 22 22 new WPG( dirname(__FILE__) ); 23 new WPG_Admin( );23 new WPG_Admin( dirname(__FILE__) ); 24 24 25 25 // add_action( 'admin_init', 'tcb_wpg_test' );
Note: See TracChangeset
for help on using the changeset viewer.