Changeset 1347544 for goolytics-simple-google-analytics
- Timestamp:
- 02/10/2016 02:43:07 PM (10 years ago)
- Location:
- goolytics-simple-google-analytics/trunk
- Files:
-
- 3 edited
-
goolytics.php (modified) (2 diffs)
-
inc/options.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
goolytics-simple-google-analytics/trunk/goolytics.php
r1332306 r1347544 2 2 /* 3 3 Plugin Name: Goolytics - Simple Google Analytics 4 Version: 1.0. 24 Version: 1.0.3 5 5 Plugin URI: http://www.schloebe.de/wordpress/goolytics-plugin/ 6 6 Description: A simple Google Analytics solution that works without slowing down your WordPress installation. … … 38 38 * Define the plugin version 39 39 */ 40 define("GOOLYTICSVERSION", "1.0. 2");40 define("GOOLYTICSVERSION", "1.0.3"); 41 41 42 42 /** -
goolytics-simple-google-analytics/trunk/inc/options.php
r1332306 r1347544 52 52 <tr valign="top"> 53 53 <th scope="row" style="width:180px;text-align:right;"><label for="goolytics_web_property_id"><strong><?php _e('Google Analytics ID', self::_NAMESPACE); ?>:</strong><br /><small><a href="https://www.google.com/analytics/web/" target="_blank"><?php _e('(My Analytics accounts)', self::_NAMESPACE); ?></a></small></label></th> 54 <td><input type="text" style="width:1 00px;" id="goolytics_web_property_id" name="goolytics_web_property_id" value="<?php echo get_option('goolytics_web_property_id'); ?>" /> <small><?php _e('Example: UA-0000000-0', self::_NAMESPACE); ?></small></td>54 <td><input type="text" style="width:130px;" id="goolytics_web_property_id" name="goolytics_web_property_id" value="<?php echo get_option('goolytics_web_property_id'); ?>" /> <small><?php _e('Example: UA-0000000-0', self::_NAMESPACE); ?></small></td> 55 55 </tr> 56 56 <tr valign="top"> 57 57 <th scope="row" style="width:180px;text-align:right;"><label for="goolytics_anonymize_ip"><strong><?php _e('Anonymize IP?', self::_NAMESPACE); ?>:</strong><br /><small><?php _e('(Recommended for german users)', self::_NAMESPACE); ?></small></label></th> 58 58 <td> 59 <select id="goolytics_anonymize_ip" name="goolytics_anonymize_ip" style="width:1 00px;">59 <select id="goolytics_anonymize_ip" name="goolytics_anonymize_ip" style="width:130px;"> 60 60 <option value="0" <?php selected(get_option('goolytics_anonymize_ip'), 0); ?>><?php _e('No', self::_NAMESPACE) ; ?></option> 61 61 <option value="1" <?php selected(get_option('goolytics_anonymize_ip'), 1); ?>><?php _e('Yes', self::_NAMESPACE) ; ?></option> -
goolytics-simple-google-analytics/trunk/readme.txt
r1332306 r1347544 46 46 == Changelog == 47 47 48 = 1.0.3 = 49 * Settings page visual improvements (Thanks pixelkicks!) 50 48 51 = 1.0.2 = 49 52 * Settings page visual improvements
Note: See TracChangeset
for help on using the changeset viewer.