Plugin Directory

Changeset 349051


Ignore:
Timestamp:
02/22/2011 09:18:52 AM (15 years ago)
Author:
andykillen
Message:

release 1.3.1

Location:
easy-iframe-loader/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • easy-iframe-loader/trunk/easy-iframe-loader.php

    r341530 r349051  
    33Plugin Name: Easy iFrame Loader
    44Plugin URI: http://phat-reaction.com/wordpress-plugins/easy-iframe-loader
    5 Version: 1.3
     5Version: 1.3.1
    66Author: Andy Killen
    77Author URI: http://phat-reaction.com
     
    9393        }
    9494
    95 
    9695        function late_iframe_loader($atts){
    9796               $options = get_option("iframeLoaderAdminOptions");
     
    106105                return $html;
    107106        }
    108 
    109 
    110107
    111108        function a_store_loader($atts){
     
    154151                return $html;
    155152        }
    156 
    157153        function youtube_share_image($page_ID){
    158154           
    159155        }
    160 
    161156
    162157        function vimeo_iframe_loader($atts){
     
    217212
    218213add_action('admin_menu', 'iframeLoader_ap',1); //admin page
    219 
    220214add_action('widgets_init',array(&$cons_iframeLoader, 'load_widgets'),1); // loads widgets
    221 
    222215add_action ('init',array(&$cons_iframeLoader, 'loadLangauge'),1);  // add languages
    223 // save custom user fields
    224216add_shortcode('iframe_loader', array(&$cons_iframeLoader,'late_iframe_loader'),1); // setup shortcode [iframe_loader] basic
    225 
    226217add_shortcode('a_store', array(&$cons_iframeLoader,'a_store_loader'),1); // setup shortcode [a_store] amazon store
    227 
    228218add_shortcode('amazon_buy', array(&$cons_iframeLoader,'amazon_buy_loader'),1); // setup shortcode [amazon_buy] amazon buy button with image
    229 
    230219add_shortcode('iframe_youtube', array(&$cons_iframeLoader,'youtube_iframe_loader'),1); // setup shortcode [iframe_youtube] youtube videos
    231 
    232220add_shortcode('iframe_vimeo', array(&$cons_iframeLoader,'vimeo_iframe_loader'),1); // setup shortcode [iframe_youtube] youtube videos
    233 
    234221register_activation_hook( __FILE__, array(&$cons_iframeLoader, 'activate') );
    235 
    236 
    237 
    238 
    239222}
    240223//
     
    256239}
    257240//
    258 // at an amazon by now iframe
     241// add an amazon by now iframe
    259242//
    260243function add_iframe_amazon_buy($src, $class=''){
  • easy-iframe-loader/trunk/readme.txt

    r341530 r349051  
    55Requires at least: 2.8.6
    66Tested up to: 3.1
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88
    99Adds 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.
     
    124124
    125125== Changelog ==
     126= 1.3.1 =
     127
     128changed activation class call which got lost by SVN
    126129
    127130= 1.3 =
     
    140143
    141144== Upgrade Notice ==
     145
     146= 1.3.1 =
     147
     148changed activation class call which got lost by SVN
     149
    142150= 1.3 =
    143151
Note: See TracChangeset for help on using the changeset viewer.