Plugin Directory

Changeset 339820


Ignore:
Timestamp:
02/02/2011 10:22:21 AM (15 years ago)
Author:
hellysium
Message:
 
Location:
all-in-one-slideshow/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • all-in-one-slideshow/trunk/all-in-one-slideshow.php

    r339818 r339820  
    44Plugin URI: http://www.sramekdesign.com/wordpress/plugins/all-in-one-slideshow/
    55Description: All-In-One Slideshow plugin implements jCycle, Easing and Cufon scripts into the highly customizable slideshow gallery. You can combine 27 transition and 8 easing effects! The plugin comes with package of 8 cufon fonts. You can easlily add new fonts. Choose between arrow and numbered navigation. Or use both at once. Try out how easy it is to customize this slideshow gallery without knowledge of programming.
    6 Version: 1.3
     6Version: 1.3.1
    77Author: Tom Sramek
    88Author URI: http://www.sramekdesign.com/
     
    12761276function aio_slideshow_when_args() {
    12771277   
    1278   global $aio_slideshow_settings, $post;   
     1278  global $aio_slideshow_settings, $post;
     1279 
     1280  //POSTS
     1281  //if posts field is empty
     1282  if( is_single() && $aio_slideshow_settings['on_posts'] == '' ) {   
     1283     
     1284     aio_slideshow_args();
     1285     
     1286  }
     1287 
     1288  //if posts field is not empty 
     1289  if($aio_slideshow_settings['on_posts'] !== '') {
     1290   
     1291  $on_posts_list = $aio_slideshow_settings['on_posts'];
     1292  $on_posts = explode(',', $on_posts_list); 
     1293  if( is_single($on_posts)) {   
     1294     
     1295     aio_slideshow_args();
     1296     
     1297   }
     1298   
     1299  }
     1300 
     1301  //PAGES
     1302  //if pages field is empty
     1303  if( is_page() && $aio_slideshow_settings['on_pages'] == '' ) {   
     1304     
     1305     aio_slideshow_args(); 
     1306     
     1307  }
     1308 
     1309  //if pages field is not empty 
     1310  if($aio_slideshow_settings['on_pages'] !== '') {
     1311   
     1312  $on_pages_list = $aio_slideshow_settings['on_pages'];
     1313  $on_pages = explode(',', $on_pages_list); 
     1314  if( is_page($on_pages)) {   
     1315     
     1316     aio_slideshow_args();
     1317     
     1318   }
     1319   
     1320  }
     1321   
    12791322
    12801323 
  • all-in-one-slideshow/trunk/readme.txt

    r339811 r339820  
    2727     1.2.1     2010/12/02 identifier #nav changed to #aio-nav, added upload tutorial, fixed 'settings link'. I apologize for the 3rd update in 3 days but I just want all users to be satisfied with the plugin. thank you!
    2828     1.3.0     2011/02/02 one save button, option to set loading of scripts/styles only when you need them
     29     1.3.1     bug fix for 1.3.0
    2930
    3031Thanks to all who sent bug reports and ideas for
Note: See TracChangeset for help on using the changeset viewer.