XPressME Integration Kit

Trac


Ignore:
Timestamp:
Jul 15, 2009, 12:58:34 PM (15 years ago)
Author:
toemon
Message:

ウィジェットブロックでウィジェットを表示したとき、ウィジェットのタイトルを非表示にするオプション追加 fixed #182
ウィジェットのタイトルの非表示はブロックで1つだけのウィジェットを選択した場合のみ有効

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/blocks/widget_block.php

    r324 r339  
    1919                $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 
    2020                $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_widget_block.html' : trim( $options[1] ); 
    21         $selected = array_slice($options,2); // get allowed cats 
     21                $title_show = empty( $options[2] ) ? false : true ; 
     22        $selected = array_slice($options,3); // get allowed cats 
    2223 
    2324                if ($mydirname == 'wordpress'){ 
     
    4445                $form  = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />"; 
    4546            $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />"; 
     47                $form .= "<br />" . yes_no_radio_option('options[2]', _MB_XP2_WIDGET_TITLE_SHOW , $title_show); 
    4648                $form .= "<br />"; 
    4749                $form .= _MB_XP2_SELECT_WIDGET .":<br />\n"; 
Note: See TracChangeset for help on using the changeset viewer.