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


PHP CitruscartSelect::groups方法代码示例

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


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

示例1:

            <td style="width: 150px;"><?php 
echo CitruscartSelect::btbooleanlist('enable_reorder_table', 'class="inputbox"', $this->row->get('enable_reorder_table', '1'));
?>
            </td>
            <td><?php 
echo JText::_('COM_CITRUSCART_ENABLE_AUTOMATIC_TABLE_REORDERING_DESC');
?>
            </td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_CITRUSCART_DEFAULT_USER_GROUP');
?>
            </th>
            <td style="width: 150px;"><?php 
echo CitruscartSelect::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_CITRUSCART_LOAD_CUSTOM_LANGUAGE_FILE');
?>
            </th>
            <td style="width: 150px;"><?php 
echo CitruscartSelect::btbooleanlist('custom_language_file', 'class="inputbox"', $this->row->get('custom_language_file', '0'));
?>
            </td>
            <td><?php 
echo JText::_('COM_CITRUSCART_CITRUSCART_CUSTOM_LANGUAGE_FILE_DESC');
开发者ID:joomlacorner,项目名称:citruscart,代码行数:31,代码来源:advanced_general.php

示例2: array

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

示例3:

echo JText::_("COM_CITRUSCART_USERNAME");
?>
"/>
                </th>
                <th>
                    <input id="filter_email" type="text" name="filter_email" value="<?php 
echo $state->filter_email;
?>
" size="25" placeholder="<?php 
echo JText::_("COM_CITRUSCART_EMAIL");
?>
"/>
                </th>
                <th>
                    <?php 
echo CitruscartSelect::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:joomlacorner,项目名称:citruscart,代码行数:31,代码来源:default.php

示例4:

    echo $k;
    ?>
'>
				<td style="text-align: center;">
					<?php 
    echo CitruscartGrid::checkedout($item, $i, 'shipping_rate_id');
    ?>
				</td>
                <td style="text-align: center;">
                    <?php 
    echo CitruscartSelect::geozone($item->geozone_id, "geozone[{$item->shipping_rate_id}]", 2);
    ?>
                </td>
                <td style="text-align: center;">
                   <?php 
    echo CitruscartSelect::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:joomlacorner,项目名称:citruscart,代码行数:31,代码来源:setrates.php


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