當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。