Changeset 1584656
- Timestamp:
- 01/29/2017 08:02:29 PM (9 years ago)
- Location:
- good-url-preview-box
- Files:
-
- 2 added
- 11 edited
- 4 copied
-
tags/1.9.1 (copied) (copied from good-url-preview-box/trunk)
-
tags/1.9.1/gurlpb-cache-settings.php (added)
-
tags/1.9.1/gurlpb-config.php (copied) (copied from good-url-preview-box/trunk/gurlpb-config.php) (1 diff)
-
tags/1.9.1/gurlpb-start.php (modified) (2 diffs)
-
tags/1.9.1/gurlpb-statistics.php (modified) (1 diff)
-
tags/1.9.1/gute-url-preview-box.php (copied) (copied from good-url-preview-box/trunk/gute-url-preview-box.php) (1 diff)
-
tags/1.9.1/languages/gurlpb-en.pot (modified) (1 diff)
-
tags/1.9.1/languages/gurlpb.mo (modified) (previous)
-
tags/1.9.1/readme.txt (copied) (copied from good-url-preview-box/trunk/readme.txt) (3 diffs)
-
trunk/gurlpb-cache-settings.php (added)
-
trunk/gurlpb-config.php (modified) (1 diff)
-
trunk/gurlpb-start.php (modified) (2 diffs)
-
trunk/gurlpb-statistics.php (modified) (1 diff)
-
trunk/gute-url-preview-box.php (modified) (1 diff)
-
trunk/languages/gurlpb-en.pot (modified) (1 diff)
-
trunk/languages/gurlpb.mo (modified) (previous)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
good-url-preview-box/tags/1.9.1/gurlpb-config.php
r1551542 r1584656 1 1 <?php 2 2 class Gurlpb_config { 3 public static $_VERSION = '1.9 '; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!3 public static $_VERSION = '1.9.1'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN! 4 4 public static $_DEBUG = false; 5 5 public static $_LOCAL = false; -
good-url-preview-box/tags/1.9.1/gurlpb-start.php
r1551537 r1584656 359 359 add_menu_page( 'Gurlpb', __('URL-Preview', 'gurlpb'), 'manage_options', 'gurlpb_adminmenu', 'gurlpb_settings', GURLPBPLUGINURL . '/gurlpb_wordpress-plugin-left-icon.png'); 360 360 add_submenu_page( 'gurlpb_adminmenu', __('Statistics', 'gurlpb'), __('Statistics', 'gurlpb'), 'manage_options', 'gurlpb_statistics', 'gurlpb_statistics' ); 361 add_submenu_page( 'gurlpb_adminmenu', 'Cache', 'Cache', 'manage_options', 'gurlpb_cache_settings', 'gurlpb_cache_settings' ); 361 362 362 363 } … … 371 372 include_once( plugin_dir_path( __FILE__ ) . 'gurlpb-statistics.php' ); 372 373 Gurlpb_statistics::page(); 374 } 375 function gurlpb_cache_settings() { 376 Gurlpb_utils::log( __FUNCTION__ . '[' . __LINE__ . "]" ); 377 include_once( plugin_dir_path( __FILE__ ) . 'gurlpb-cache-settings.php' ); 378 Gurlpb_cache_settings::page(); 373 379 } 374 380 -
good-url-preview-box/tags/1.9.1/gurlpb-statistics.php
r1551539 r1584656 6 6 { 7 7 Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] started" ); 8 if ( ! get_option( 'gurlpb-random' ) ) { 9 $str = base_convert( rand( 0, 1000000 ), 10, 36 ) . base_convert( rand( 0, 1000000 ), 10, 36 ); 10 update_option( 'gurlpb-random', sanitize_text_field( substr( $str, -8 ) ) ); 11 } 8 12 ?> 9 13 <div class="wrap"> -
good-url-preview-box/tags/1.9.1/gute-url-preview-box.php
r1551542 r1584656 6 6 Author: Martin Schaedler 7 7 Author URI: https://hypnose54321.de/frankfurt/_contact.html 8 Version: 1.9 8 Version: 1.9.1 9 9 Text Domain: gurlpb 10 10 */ -
good-url-preview-box/tags/1.9.1/languages/gurlpb-en.pot
r1536878 r1584656 108 108 109 109 msgid "setting-manual-URL3" 110 msgstr "Or in the text editor youclick<br />on the button 'URL box'."110 msgstr "Or in the visual editor click<br />on the button 'URL box'." 111 111 112 112 msgid "Expert_settings" -
good-url-preview-box/tags/1.9.1/readme.txt
r1551907 r1584656 4 4 Tags: link, links, URL, URLs, preview, preview image, guteurls, gute-urls, facebook, internet-link, post, posting, like Facebook, exacly like facebook, find url, find link, search link, search url, detect url, internet address 5 5 Requires at least: 3.0.1 6 Tested up to: 4.7 6 Tested up to: 4.7.2 7 7 Stable tag: 4.6.1 8 8 License: GPLv2 or later … … 118 118 == Upgrade Notice == 119 119 120 = 1.9.1 = 121 Added: Reset data for one single preview box (force reload image and description). 122 I love to hear your suggestions, to make it even better. 123 120 124 = 1.9 = 121 125 Statistics added. How many times are the preview boxed displayed. Many views in one user session is counted as one view. 122 I love to hear your suggestions, to make it even better.123 126 124 127 = 1.7 = … … 152 155 == Changelog == 153 156 157 = 1.9.1 = 158 Added: Reset data for one single preview box (force reload image and description). 159 154 160 = 1.9 = 155 161 * Statistics added. How many times are the preview boxed displayed. Many views in one user session is counted as one view. -
good-url-preview-box/trunk/gurlpb-config.php
r1551542 r1584656 1 1 <?php 2 2 class Gurlpb_config { 3 public static $_VERSION = '1.9 '; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!3 public static $_VERSION = '1.9.1'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN! 4 4 public static $_DEBUG = false; 5 5 public static $_LOCAL = false; -
good-url-preview-box/trunk/gurlpb-start.php
r1551537 r1584656 359 359 add_menu_page( 'Gurlpb', __('URL-Preview', 'gurlpb'), 'manage_options', 'gurlpb_adminmenu', 'gurlpb_settings', GURLPBPLUGINURL . '/gurlpb_wordpress-plugin-left-icon.png'); 360 360 add_submenu_page( 'gurlpb_adminmenu', __('Statistics', 'gurlpb'), __('Statistics', 'gurlpb'), 'manage_options', 'gurlpb_statistics', 'gurlpb_statistics' ); 361 add_submenu_page( 'gurlpb_adminmenu', 'Cache', 'Cache', 'manage_options', 'gurlpb_cache_settings', 'gurlpb_cache_settings' ); 361 362 362 363 } … … 371 372 include_once( plugin_dir_path( __FILE__ ) . 'gurlpb-statistics.php' ); 372 373 Gurlpb_statistics::page(); 374 } 375 function gurlpb_cache_settings() { 376 Gurlpb_utils::log( __FUNCTION__ . '[' . __LINE__ . "]" ); 377 include_once( plugin_dir_path( __FILE__ ) . 'gurlpb-cache-settings.php' ); 378 Gurlpb_cache_settings::page(); 373 379 } 374 380 -
good-url-preview-box/trunk/gurlpb-statistics.php
r1551539 r1584656 6 6 { 7 7 Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] started" ); 8 if ( ! get_option( 'gurlpb-random' ) ) { 9 $str = base_convert( rand( 0, 1000000 ), 10, 36 ) . base_convert( rand( 0, 1000000 ), 10, 36 ); 10 update_option( 'gurlpb-random', sanitize_text_field( substr( $str, -8 ) ) ); 11 } 8 12 ?> 9 13 <div class="wrap"> -
good-url-preview-box/trunk/gute-url-preview-box.php
r1551542 r1584656 6 6 Author: Martin Schaedler 7 7 Author URI: https://hypnose54321.de/frankfurt/_contact.html 8 Version: 1.9 8 Version: 1.9.1 9 9 Text Domain: gurlpb 10 10 */ -
good-url-preview-box/trunk/languages/gurlpb-en.pot
r1536878 r1584656 108 108 109 109 msgid "setting-manual-URL3" 110 msgstr "Or in the text editor youclick<br />on the button 'URL box'."110 msgstr "Or in the visual editor click<br />on the button 'URL box'." 111 111 112 112 msgid "Expert_settings" -
good-url-preview-box/trunk/readme.txt
r1551907 r1584656 4 4 Tags: link, links, URL, URLs, preview, preview image, guteurls, gute-urls, facebook, internet-link, post, posting, like Facebook, exacly like facebook, find url, find link, search link, search url, detect url, internet address 5 5 Requires at least: 3.0.1 6 Tested up to: 4.7 6 Tested up to: 4.7.2 7 7 Stable tag: 4.6.1 8 8 License: GPLv2 or later … … 118 118 == Upgrade Notice == 119 119 120 = 1.9.1 = 121 Added: Reset data for one single preview box (force reload image and description). 122 I love to hear your suggestions, to make it even better. 123 120 124 = 1.9 = 121 125 Statistics added. How many times are the preview boxed displayed. Many views in one user session is counted as one view. 122 I love to hear your suggestions, to make it even better.123 126 124 127 = 1.7 = … … 152 155 == Changelog == 153 156 157 = 1.9.1 = 158 Added: Reset data for one single preview box (force reload image and description). 159 154 160 = 1.9 = 155 161 * Statistics added. How many times are the preview boxed displayed. Many views in one user session is counted as one view.
Note: See TracChangeset
for help on using the changeset viewer.