当前位置: 首页>>代码示例>>PHP>>正文


PHP GDSRHelper::render_thumbs_sizes方法代码示例

本文整理汇总了PHP中GDSRHelper::render_thumbs_sizes方法的典型用法代码示例。如果您正苦于以下问题:PHP GDSRHelper::render_thumbs_sizes方法的具体用法?PHP GDSRHelper::render_thumbs_sizes怎么用?PHP GDSRHelper::render_thumbs_sizes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GDSRHelper的用法示例。


在下文中一共展示了GDSRHelper::render_thumbs_sizes方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _e

                            <td class="gdsr-preview-space"></td>
                            <td class="gdsr-preview-thumbs" style="background-color: gray;"><img src="#" id="gdsr_preview_thumbs_gray" /></td>
                            <td class="gdsr-preview-space" ></td>
                            <td class="gdsr-preview-thumbs gdsr-preview-pic"><img src="#" id="gdsr_preview_thumbs_picture" /></td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr valign="top">
                <td width="100" style="padding: 0; border: 0; height: 28px; vertical-align: top;"><?php 
_e("Size", "gd-star-rating");
?>
:</td>
                <td width="250" align="left" style="padding: 0; border: 0; vertical-align: top; text-align: right;">
                    <?php 
GDSRHelper::render_thumbs_sizes("gdsr_size_preview_thumbs", 32, 180, ' onchange="gdsrStyleSelection(\'thumbs\')"');
?>
                </td>
            </tr>
            <tr valign="top">
                <td width="100" style="padding: 0; border: 0; vertical-align: top;"><?php 
_e("Author", "gd-star-rating");
?>
:</td>
                <td width="250" align="left" style="padding: 0; border: 0; vertical-align: top;">
                    <div id="gdsrauthornamethumbs" style="text-align: right;"></div>
                    <div id="gdsrauthoremailthumbs" style="text-align: right;"></div>
                    <div id="gdsrauthorurlthumbs" style="text-align: right;"></div>
                </td>
            </tr>
        </table>
开发者ID:pyropictures,项目名称:wordpress-plugins,代码行数:31,代码来源:gfx_preview.php

示例2: render_thumbs_sizes_tinymce

 function render_thumbs_sizes_tinymce($name, $selected = "20", $width = 130)
 {
     GDSRHelper::render_thumbs_sizes($name, $selected, $width);
 }
开发者ID:sangpena,项目名称:appflex.mobi,代码行数:4,代码来源:elements.php

示例3: _e

</td>
  </tr>
  <tr>
    <td width="100" valign="top"></td>
    <td width="100" nowrap="nowrap"><?php 
_e("Thumbs Set", "gd-star-rating");
?>
:</td>
    <td align="right"><select style="width: 200px" name="<?php 
echo $wpfn;
?>
[rating_thumb]"><?php 
GDSRHelper::render_styles_select($wptt, $wpno['rating_thumb']);
?>
</select></td>
  </tr>
  <tr>
    <td width="100" valign="top"></td>
    <td width="100" nowrap="nowrap"><?php 
_e("Thumbs Size", "gd-star-rating");
?>
:</td>
    <td align="right"><?php 
GDSRHelper::render_thumbs_sizes($wpfn . "[rating_thumb_size]", $wpno['rating_thumb_size'], 200);
?>
</td>
  </tr>
</table>
</div>
<div class="gdsr-table-split"></div>
开发者ID:pyropictures,项目名称:wordpress-plugins,代码行数:30,代码来源:part_stars.php

示例4: _e

            <tr>
                <td width="150"><?php 
_e("Thumbs Set", "gd-star-rating");
?>
:</td>
                <td width="200" align="left">
                <select style="width: 180px;" name="gdsr_thumb_cmm_style" id="gdsr_thumb_cmm_style">
                <?php 
GDSRHelper::render_styles_select($gdsr_gfx->thumbs, $gdsr_options["thumb_cmm_style"]);
?>
                </select>
                </td>
                <td width="10"></td>
                <td width="150" align="left">
                <?php 
GDSRHelper::render_thumbs_sizes("gdsr_thumb_cmm_size", $gdsr_options["thumb_cmm_size"]);
?>
                </td>
            </tr>
        </table>
        <table cellpadding="0" cellspacing="0" class="previewtable">
            <tr>
                <td width="150">MSIE 6:</td>
                <td width="200" align="left">
                <select style="width: 180px;" name="gdsr_thumb_cmm_style_ie6" id="gdsr_thumb_cmm_style_ie6">
                <?php 
GDSRHelper::render_styles_select($gdsr_gfx->thumbs, $gdsr_options["thumb_cmm_style_ie6"]);
?>
                </select>
                </td>
                <td width="10"></td>
开发者ID:TheReaCompany,项目名称:pooplog,代码行数:31,代码来源:settings_thumbs_comments.php


注:本文中的GDSRHelper::render_thumbs_sizes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。