Ignore:
Timestamp:
Jun 26, 2013, 8:34:21 PM (11 years ago)
Author:
flop25
Message:

adding a new option for the mouseover effect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped_black_bloc/admin/upgrade.inc.php

    r17858 r23569  
    1414  'starting_to'           => 1,
    1515  'catthumb'         => 'none', //none - same - all
    16   'orientation_option'         => 'none' //none - max_heigth -big_landscape
     16  'orientation_option'         => 'none', //none - max_heigth - big_landscape
     17  'hover_action'         => 'fadein', //fadein - fadeout - border - none
    1718  );
    1819  $query = "
     
    2223  load_conf_from_db();
    2324}
    24 elseif (count(unserialize( $conf['stripped_black_bloc'] ))!=7)
     25elseif (count(unserialize( $conf['stripped_black_bloc'] ))!=8)
    2526{
    2627  $conff=unserialize($conf['stripped_black_bloc']);
     
    3233  'starting_to'           => (isset($conff['starting_to'])) ? $conff['starting_to'] :1,
    3334  'catthumb'         => (isset($conff['catthumb'])) ? $conff['catthumb'] :'none', //none - same - all
    34   'orientation_option'         => (isset($conff['orientation_option'])) ? $conff['orientation_option'] :'none' //none - max_heigth -big_landscape
     35  'orientation_option'         => (isset($conff['orientation_option'])) ? $conff['orientation_option'] :'none', //none - max_heigth -big_landscape
     36  'hover_action'         => (isset($conff['hover_action'])) ? $conff['hover_action'] :'fadein' //fadein - fadeout - border - none
    3537  );
    3638  conf_update_param('stripped_black_bloc', pwg_db_real_escape_string(serialize($config)));
Note: See TracChangeset for help on using the changeset viewer.