Esempio n. 1
0
?>
                <input type="text" name="ca_list_row" value='<?php 
echo $ca['ca_list_row'];
?>
' id="ca_list_row" required class="required frm_input" size="3"> 줄
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="ca_mobile_skin">모바일 출력스킨</label></th>
            <td>
                <?php 
echo help('기본으로 제공하는 스킨은 ' . str_replace(G5_PATH . '/', '', $g5_mshop_skin_path) . '/list.*.skin.php 입니다.');
?>
                <select id="ca_mobile_skin" name="ca_mobile_skin">
                    <?php 
echo get_list_skin_options("^list.[0-9]+\\.skin\\.php", $g5_mshop_skin_path, $ca['ca_mobile_skin']);
?>
                </select>
            </td>
        </tr>
        <tr>
            <th scope="row"><label for="ca_mobile_img_width">모바일 출력이미지 폭</label></th>
            <td>
                <?php 
echo help("쇼핑몰환경설정 &gt; 이미지(소) 넓이가 기본값으로 설정됩니다.\n" . G5_SHOP_URL . "/list.php에서 출력되는 이미지의 폭입니다.");
?>
                <input type="text" name="ca_mobile_img_width" value="<?php 
echo $ca['ca_mobile_img_width'];
?>
" id="ca_mobile_img_width" required class="required frm_input" size="5" > 픽셀
            </td>
Esempio n. 2
0
?>
" id="de_search_list_mod" class="frm_input" size="3">
                <label for="de_search_list_row">출력할 줄 수</label>
                <input type="text" name="de_search_list_row" value="<?php 
echo $default['de_search_list_row'];
?>
" id="de_search_list_row" class="frm_input" size="3">
            </td>
        </tr>
        <tr>
            <th scope="row">모바일 검색상품출력</th>
            <td>
                <label for="de_mobile_search_list_skin">스킨</label>
                <select name="de_mobile_search_list_skin" id="de_mobile_search_list_skin">
                    <?php 
echo get_list_skin_options("^list.[0-9]+\\.skin\\.php", G5_MSHOP_SKIN_PATH, $default['de_mobile_search_list_skin']);
?>
                </select>
                <label for="de_mobile_search_img_width">이미지폭</label>
                <input type="text" name="de_mobile_search_img_width" value="<?php 
echo $default['de_mobile_search_img_width'];
?>
" id="de_mobile_search_img_width" class="frm_input" size="3">
                <label for="de_mobile_search_img_height">이미지높이</label>
                <input type="text" name="de_mobile_search_img_height" value="<?php 
echo $default['de_mobile_search_img_height'];
?>
" id="de_mobile_search_img_height" class="frm_input" size="3">
                <label for="de_mobile_search_list_mod">1줄당 이미지 수</label>
                <input type="text" name="de_mobile_search_list_mod" value="<?php 
echo $default['de_mobile_search_list_mod'];
Esempio n. 3
0
            <select name="ev_skin" id="ev_skin">
                <?php 
echo get_list_skin_options("^list.[0-9]+\\.skin\\.php", G5_SHOP_SKIN_PATH, $ev['ev_skin']);
?>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="ev_mobile_skin">모바일 출력스킨</label></th>
        <td>
            <?php 
echo help('기본으로 제공하는 스킨은 ' . str_replace(G5_PATH . '/', '', G5_MSHOP_SKIN_PATH) . '/list.*.skin.php 입니다.' . PHP_EOL . G5_SHOP_DIR . '/event.php?ev_id=1234567890&amp;skin=userskin.php 처럼 직접 만든 스킨을 사용할 수도 있습니다.');
?>
            <select name="ev_mobile_skin" id="ev_mobile_skin">
                <?php 
echo get_list_skin_options("^list.[0-9]+\\.skin\\.php", G5_MSHOP_SKIN_PATH, $ev['ev_mobile_skin']);
?>
            </select>
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="ev_img_width">출력이미지 폭</label></th>
        <td>
              <input type="text" name="ev_img_width" value="<?php 
echo $ev['ev_img_width'];
?>
" id="ev_img_width" required class="required frm_input" size="5"> 픽셀
        </td>
    </tr>
    <tr>
        <th scope="row"><label for="ev_img_height">출력이미지 높이</label></th>
Esempio n. 4
0
<?php

include_once './_common.php';
if ($type == 'mobile') {
    if (preg_match('#^theme/(.+)$#', $dir, $match)) {
        $skin_dir = G5_THEME_MOBILE_PATH . '/' . G5_SKIN_DIR . '/shop/' . $match[1];
    } else {
        $skin_dir = G5_MOBILE_PATH . '/' . G5_SKIN_DIR . '/shop/' . $dir;
    }
} else {
    if (preg_match('#^theme/(.+)$#', $dir, $match)) {
        $skin_dir = G5_THEME_PATH . '/' . G5_SKIN_DIR . '/shop/' . $match[1];
    } else {
        $skin_dir = G5_PATH . '/' . G5_SKIN_DIR . '/shop/' . $dir;
    }
}
echo get_list_skin_options("^list.[0-9]+\\.skin\\.php", $skin_dir, $sval);