Changeset 349051
- Timestamp:
- 02/22/2011 09:18:52 AM (15 years ago)
- Location:
- easy-iframe-loader/trunk
- Files:
-
- 2 edited
-
easy-iframe-loader.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-iframe-loader/trunk/easy-iframe-loader.php
r341530 r349051 3 3 Plugin Name: Easy iFrame Loader 4 4 Plugin URI: http://phat-reaction.com/wordpress-plugins/easy-iframe-loader 5 Version: 1.3 5 Version: 1.3.1 6 6 Author: Andy Killen 7 7 Author URI: http://phat-reaction.com … … 93 93 } 94 94 95 96 95 function late_iframe_loader($atts){ 97 96 $options = get_option("iframeLoaderAdminOptions"); … … 106 105 return $html; 107 106 } 108 109 110 107 111 108 function a_store_loader($atts){ … … 154 151 return $html; 155 152 } 156 157 153 function youtube_share_image($page_ID){ 158 154 159 155 } 160 161 156 162 157 function vimeo_iframe_loader($atts){ … … 217 212 218 213 add_action('admin_menu', 'iframeLoader_ap',1); //admin page 219 220 214 add_action('widgets_init',array(&$cons_iframeLoader, 'load_widgets'),1); // loads widgets 221 222 215 add_action ('init',array(&$cons_iframeLoader, 'loadLangauge'),1); // add languages 223 // save custom user fields224 216 add_shortcode('iframe_loader', array(&$cons_iframeLoader,'late_iframe_loader'),1); // setup shortcode [iframe_loader] basic 225 226 217 add_shortcode('a_store', array(&$cons_iframeLoader,'a_store_loader'),1); // setup shortcode [a_store] amazon store 227 228 218 add_shortcode('amazon_buy', array(&$cons_iframeLoader,'amazon_buy_loader'),1); // setup shortcode [amazon_buy] amazon buy button with image 229 230 219 add_shortcode('iframe_youtube', array(&$cons_iframeLoader,'youtube_iframe_loader'),1); // setup shortcode [iframe_youtube] youtube videos 231 232 220 add_shortcode('iframe_vimeo', array(&$cons_iframeLoader,'vimeo_iframe_loader'),1); // setup shortcode [iframe_youtube] youtube videos 233 234 221 register_activation_hook( __FILE__, array(&$cons_iframeLoader, 'activate') ); 235 236 237 238 239 222 } 240 223 // … … 256 239 } 257 240 // 258 // a tan amazon by now iframe241 // add an amazon by now iframe 259 242 // 260 243 function add_iframe_amazon_buy($src, $class=''){ -
easy-iframe-loader/trunk/readme.txt
r341530 r349051 5 5 Requires at least: 2.8.6 6 6 Tested up to: 3.1 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 9 9 Adds a shortcode/widget/template tag to manage iFrame loading, uses javascript for late loading to increase page speed. Additional iframes support for Youtube, Vimeo and Amazon. … … 124 124 125 125 == Changelog == 126 = 1.3.1 = 127 128 changed activation class call which got lost by SVN 126 129 127 130 = 1.3 = … … 140 143 141 144 == Upgrade Notice == 145 146 = 1.3.1 = 147 148 changed activation class call which got lost by SVN 149 142 150 = 1.3 = 143 151
Note: See TracChangeset
for help on using the changeset viewer.