Ignore:
Timestamp:
Sep 10, 2014, 10:28:54 AM (10 years ago)
Author:
JanisV
Message:

Removed unused elements

Location:
extensions/stripped_responsive/admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped_responsive/admin/admin.inc.php

    r29449 r29453  
    1212
    1313        $config['themeStyle']=$_POST['f_themeStyle'];
    14         $config['hideMenu']=isset($_POST['f_hideMenu']);
    15         $config['animatedMenu']=isset($_POST['f_animatedMenu']);
    1614        $config['noLowercase']=!isset($_POST['f_forceLowercase']);
    17         $config['albumType']=$_POST['f_albumType'];
    1815        $config['albumFrame']=isset($_POST['f_albumFrame']);
    1916        $config['thumbFrame']=isset($_POST['f_thumbFrame']);
    2017        $config['showThumbLegend']=isset($_POST['f_showThumbLegend']);
     18        $config['menuOnRight']=isset($_POST['f_menuOnRight']);
    2119
    2220        $config['showTitleOnBrowsePath']=isset($_POST['f_showTitleOnBrowsePath']);
  • extensions/stripped_responsive/admin/admin.tpl

    r29449 r29453  
    1717                                </label></li>
    1818                                <li><label>
    19                                         <span class="property">{'Hide menu by default on category page'|@translate}</span>&nbsp;
    20                                         <input type="checkbox" name="f_hideMenu" {if $options.hideMenu}checked{/if}>
    21                                 </label></li>
    22                                 <li><label>
    23                                         <span class="property">{'Animate menu'|@translate}</span>&nbsp;
    24                                         <input type="checkbox" name="f_animatedMenu" {if $options.animatedMenu}checked{/if}>
    25                                 </label></li>
    26                                 <li><label>
    2719                                        <span class="property">{'Force text to lowercase'|@translate}</span>&nbsp;
    2820                                        <input type="checkbox" name="f_forceLowercase" {if !($options.noLowercase)}checked{/if}>
    2921                                </label></li>
    3022                                <li><label>
    31                                         <span class="property">{'Album list layout'|@translate}</span>&nbsp;
    32                                         <select name="f_albumType" style="min-width:150px;">
    33                                                 <option value="responsive" {if ($options.albumType=="responsive")}selected{/if}>{'Responsive (description beside thumbnail)'|@translate}</option>
    34                                                 <option value="small" {if ($options.albumType=="small")}selected{/if}>{'5 albums per row (no album description)'|@translate}</option>
    35                                                 <option value="3perline" {if ($options.albumType=="3perline")}selected{/if}>{'3 albums per row (description below thumbnail)'|@translate}</option>
    36                                                 <option value="2perline" {if ($options.albumType=="2perline")}selected{/if}>{'2 albums per row (description beside thumbnail)'|@translate}</option>
    37                                                 <option value="1perline" {if ($options.albumType=="1perline")}selected{/if}>{'1 album per row (description beside thumbnail)'|@translate}</option>
    38                                         </select>
    39                                 </label></li>
    40                                 <li><label>
    4123                                        <span class="property">{'Display frame around albums'|@translate}</span>&nbsp;
    4224                                        <input type="checkbox" name="f_albumFrame" {if $options.albumFrame}checked{/if}>
     
    4931                                        <span class="property">{'Show thumbnail caption'|@translate}</span>&nbsp;
    5032                                        <input type="checkbox" name="f_showThumbLegend" {if $options.showThumbLegend}checked{/if}>
     33                                </label></li>
     34                                <li><label>
     35                                        <span class="property">{'Menu on the right'|@translate}</span>&nbsp;
     36                                        <input type="checkbox" name="f_menuOnRight" {if $options.menuOnRight}checked{/if}>
    5137                                </label></li>
    5238                        </ul>
  • extensions/stripped_responsive/admin/maintain.inc.php

    r29449 r29453  
    1010        'paramVersion'                                  => '2.3',
    1111       
    12         'themeStyle'                                    => 'black',
    13         'hideMenu'                                              => true,
    14         'animatedMenu'                                  => true,
     12        'themeStyle'                                    => 'original',
    1513        'noLowercase'                                   => false,
    16         'albumType'                                             => 'responsive',
    17         'albumFrame'                                    => true,
    18         'thumbFrame'                                    => true,
     14        'albumFrame'                                    => false,
     15        'thumbFrame'                                    => false,
    1916        'showThumbLegend'                               => false,
     17    'menuOnRight'                   => true,
    2018
    2119        'showTitleOnBrowsePath'                 => false,
Note: See TracChangeset for help on using the changeset viewer.