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


PHP TiendaSelect::groups方法代码示例

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


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

示例1:

    ?>
" size="5" />
					<?php 
    echo JText::_('COM_TIENDA_TO');
    ?>
					<input type="text" name="quantity_end[<?php 
    echo $item->product_price_id;
    ?>
]" value="<?php 
    echo $item->price_quantity_end;
    ?>
" size="5" />
				</td>
				<td style="text-align: center;">
					<?php 
    echo TiendaSelect::groups($item->group_id, "price_group_id[{$item->product_price_id}]");
    ?>
				</td>
				<td style="text-align: center;">
					[<a href="index.php?option=com_tienda&controller=productprices&task=delete&cid[]=<?php 
    echo $item->product_price_id;
    ?>
&return=<?php 
    echo base64_encode("index.php?option=com_tienda&controller=products&task=setprices&id={$row->product_id}&tmpl=component");
    ?>
">
						<?php 
    echo JText::_('COM_TIENDA_DELETE_PRICE');
    ?>
	
					</a>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:default.php

示例2:

                </th>
                <th>
                    <input id="filter_username" type="text" name="filter_username" value="<?php 
echo @$state->filter_username;
?>
" size="25"/>
                </th>
                <th>
                    <input id="filter_email" type="text" name="filter_email" value="<?php 
echo @$state->filter_email;
?>
" size="25"/>
                </th>
                <th>
                    <?php 
echo TiendaSelect::groups(@$state->filter_group, 'filter_group', $attribs, 'filter_group', true);
?>
                </th>
                <th>
                </th>
                <th>
                </th>
            </tr>
            <tr>
                <th colspan="20" style="font-weight: normal;">
                    <div style="float: right; padding: 5px;"><?php 
echo @$this->pagination->getResultsCounter();
?>
</div>
                    <div style="float: left;"><?php 
echo @$this->pagination->getListFooter();
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:default.php

示例3:

            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('enable_reorder_table', 'class="inputbox"', $this->row->get('enable_reorder_table', '1'));
?>
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_ENABLE_AUTOMATIC_TABLE_REORDERING_DESC');
?>
            </td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_DEFAULT_USER_GROUP');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::groups($this->row->get('default_user_group', '1'), 'default_user_group');
?>
            </td>
            <td>&nbsp;</td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_LOAD_CUSTOM_LANGUAGE_FILE');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('custom_language_file', 'class="inputbox"', $this->row->get('custom_language_file', '0'));
?>
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_TIENDA_CUSTOM_LANGUAGE_FILE_DESC');
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:advanced_general.php

示例4:

    echo $k;
    ?>
'>
				<td style="text-align: center;">
					<?php 
    echo TiendaGrid::checkedout($item, $i, 'shipping_rate_id');
    ?>
				</td>
                <td style="text-align: center;">
                    <?php 
    echo TiendaSelect::geozone($item->geozone_id, "geozone[{$item->shipping_rate_id}]", 2);
    ?>
                </td>				
                <td style="text-align: center;">
                   <?php 
    echo TiendaSelect::groups($item->group_id, "groups[{$item->shipping_rate_id}]");
    ?>
                </td>
				<td style="text-align: center;">
					<input type="text" name="price[<?php 
    echo $item->shipping_rate_id;
    ?>
]" value="<?php 
    echo $item->shipping_rate_price;
    ?>
" />
				</td>
				<td style="text-align: center;">
				    <input type="text" name="weight_start[<?php 
    echo $item->shipping_rate_id;
    ?>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:setrates.php


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