Changeset 918123
- Timestamp:
- 05/20/2014 07:05:54 PM (12 years ago)
- Location:
- profit-button/trunk
- Files:
-
- 2 edited
-
probtn.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
profit-button/trunk/probtn.php
r885519 r918123 1 1 <?php 2 3 error_reporting(E_ERROR); 4 2 5 /** 3 6 * Plugin Name: Floating Button 4 7 * Plugin URI: http://probtn.com 5 8 * Description: Floating Button is an interactive element that used to show custom content inside your application. If the button is tapped then the popup with Browser would open. The url in the Browser is set using settings on our server. 6 * Version: 1.9. 79 * Version: 1.9.8 7 10 * Author: hintsolutions 8 11 * Author URI: http://probtn.com … … 80 83 } 81 84 $url = ''; 82 $url .= implode('&', array_map('urlify', array_keys($options), $options)); 85 if (gettype($options)=="array") { 86 $url .= implode('&', array_map('urlify', array_keys($options), $options)); 87 }; 83 88 wp_register_script( 'probtn-start-script', plugins_url("start_probtn.php?mainStyleCss=".$mainStyleCss."&jqueryPepPath=".$jqueryPepPath."&".$url, __FILE__), array( 'jquery' ) ); 84 89 wp_enqueue_script( 'probtn-start-script' ); -
profit-button/trunk/readme.txt
r885519 r918123 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.9. 77 Stable tag: 1.9.8 8 8 License: Licenced under LGPL 9 9 License URI: http://opensource.org/licenses/LGPL-3.0 … … 82 82 == Changelog == 83 83 84 = 1.9.8= 85 Added options check 86 84 87 = 1.9.7= 85 88 Fixed jquery.pep.js path for start_button init script
Note: See TracChangeset
for help on using the changeset viewer.