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


PHP TiendaSelect::btbooleanlist方法代码示例

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


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

示例1:

echo TiendaSelect::taxclass(@$row->tax_class_id, 'tax_class_id', '', 'tax_class_id', false);
?>
            </td>
        </tr>
		<tr>
			<td width="100" align="right" class="key">
				<label for="shipping_method_enabled">
				<?php 
echo JText::_('COM_TIENDA_ENABLED');
?>
:
				</label>
			</td>
			<td>
				<?php 
echo TiendaSelect::btbooleanlist('shipping_method_enabled', '', @$row->shipping_method_enabled);
?>
			</td>
		</tr>
        <tr>
            <td width="100" align="right" class="key">
                <label for="shipping_method_type">
                <?php 
echo JText::_('COM_TIENDA_TYPE');
?>
:
                </label>
            </td>
            <td>
                <?php 
echo TiendaSelect::shippingtype(@$row->shipping_method_type, 'shipping_method_type', '', 'shipping_method_type', false);
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form.php

示例2:

echo $this->row->get('subscriptions_expiring_notice_days', '14');
?>
" type="text" />
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_EXPIRATION_NOTICE_DESC');
?>
            </td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_DISPLAY_SUBSCRIPTION_NUMBER');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('display_subnum', 'class="inputbox"', $this->row->get('display_subnum', '0'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_DISPLAY_SUBSCRIPTION_NUMBER_DIGITS');
?>
            </th>
            <td><input type="text" name="sub_num_digits" value="<?php 
echo $this->row->get('sub_num_digits', '');
?>
" class="inputbox" size="10" />
            </td>
            <td></td>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:products_subscriptions.php

示例3:

echo JText::_('COM_TIENDA_CONFIG_PROCESS_CONTENT_PLUGIN_PRODUCT_DESC');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('content_plugins_product_desc', 'class="inputbox"', $this->row->get('content_plugins_product_desc', '0'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_SHOW_DIOSCOURI_LINK_IN_FOOTER');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('show_linkback', 'class="inputbox"', $this->row->get('show_linkback', '1'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_YOUR_DIOSCOURI_AFFILIATE_ID');
?>
            </th>
            <td><input type="text" name="amigosid" value="<?php 
echo $this->row->get('amigosid', '');
?>
" class="inputbox" />
            </td>
            <td><a href='http://www.dioscouri.com/' target='_blank'> <?php 
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:displaysettings_advanced.php

示例4:

" size="10" maxlength="250" type="text" />
					</td>
				</tr>
				<tr>
					<td width="100" align="right" class="key">
						<label for="currency_enabled">
						<?php 
echo JText::_('COM_TIENDA_ENABLED');
?>
:
						</label>
					</td>
					<td>
					
						<?php 
echo TiendaSelect::btbooleanlist('published', '', @$row->published);
?>
					</td>
				</tr>
			</table>
			</fieldset>
			<fieldset>
    		<legend><?php 
echo JText::_('COM_TIENDA_PARAMETERS');
?>
</legend>
			<?php 
if ($output = $this->params->render('params')) {
    echo $output;
} else {
    echo "<div style=\"text-align: center; padding: 5px; \">" . JText::_('COM_TIENDA_THERE_ARE_NO_PARAMETERS_FOR_THIS_ITEM') . "</div>";
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form15.php

示例5:

            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('show_manufacturer_productcompare', 'class="inputbox"', $this->row->get('show_manufacturer_productcompare', '1'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_SHOW_PRODUCT_MODEL');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('show_model_productcompare', 'class="inputbox"', $this->row->get('show_model_productcompare', '1'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_SHOW_PRODUCT_SKU');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('show_sku_productcompare', 'class="inputbox"', $this->row->get('show_sku_productcompare', '1'));
?>
            </td>
            <td></td>
        </tr>
    </tbody>
</table>
开发者ID:annggeel,项目名称:tienda,代码行数:30,代码来源:products_compare.php

示例6:

?>
" />
					</td>
				</tr>
                <tr>
                    <td style="width: 100px; text-align: right;" class="key">
                        <label for="enabled">
                        <?php 
echo JText::_('COM_TIENDA_ENABLED');
?>
:
                        </label>
                    </td>
                    <td>
                        <?php 
echo TiendaSelect::btbooleanlist('country_enabled', '', @$row->country_enabled);
?>
                    </td>
                </tr>
				<tr>
					<td width="100" align="right" class="key">
						<label for="country_isocode_2">
						<?php 
echo JText::_('COM_TIENDA_ISO_CODE_2');
?>
:
						</label>
					</td>
					<td>
						<input type="text" name="country_isocode_2" id="country_isocode_2" size="10" maxlength="250" value="<?php 
echo @$row->country_isocode_2;
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form.php

示例7:

            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_SELECT_CART_BUTTON_TYPE');
?>
            </th>
            <td><?php 
echo TiendaSelect::cartbutton($this->row->get('cartbutton', 'button'), 'cartbutton');
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th class="dsc-key">
                <?php 
echo JText::_('COM_TIENDA_ENABLE_NAV_ON_DETAIL_PAGES');
?>
            </th>
            <td class="dsc-value">
                <?php 
echo TiendaSelect::btbooleanlist('enable_product_detail_nav', 'class="inputbox"', $this->row->get('enable_product_detail_nav', '0'));
?>
            </td>
            <td>
                <p class="dsc-tip"><?php 
echo JText::_('COM_TIENDA_ENABLE_NAV_ON_DETAIL_PAGES_DESC');
?>
</p>
            </td>
        </tr>
    </tbody>
</table>
开发者ID:annggeel,项目名称:tienda,代码行数:30,代码来源:displaysettings_general.php

示例8: array

						<input type="text" name="manufacturer_name" id="manufacturer_name" value="<?php 
echo @$row->manufacturer_name;
?>
" size="48" maxlength="250" />
					</td>
				</tr>
				<tr>
					<td style="width: 100px; text-align: right;" class="key">
						<?php 
echo JText::_('COM_TIENDA_ENABLED');
?>
:
					</td>
					<td>
						<?php 
echo TiendaSelect::btbooleanlist('manufacturer_enabled', '', @$row->manufacturer_enabled);
?>
					</td>
				</tr>
				<tr>
					<td style="width: 100px; text-align: right;" class="key">
						<?php 
echo JText::_('COM_TIENDA_CURRENT_IMAGE');
?>
:
					</td>
					<td>
						<?php 
jimport('joomla.filesystem.file');
if (!empty($row->manufacturer_image) && JFile::exists(Tienda::getPath('manufacturers_images') . DS . $row->manufacturer_image)) {
    echo TiendaUrl::popup(TiendaHelperManufacturer::getImage($row->manufacturer_id, '', '', 'full', true), TiendaHelperManufacturer::getImage($row->manufacturer_id), array('update' => false, 'img' => true));
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form.php

示例9:

:
                </th>
                <td class="dsc-value">
                    <input name="product_class_suffix" id="product_class_suffix" value="<?php 
echo @$row->product_class_suffix;
?>
" type="text" class="input-xlarge" />
                </td>
            </tr>        
            <tr>
                <td style="vertical-align: top; width: 100px; text-align: right;" class="dsc-key"><?php 
echo JText::_('COM_TIENDA_FEATURE_COMPARISON');
?>
:</td>
                <td><?php 
echo TiendaSelect::btbooleanlist('param_show_product_compare', 'class="inputbox"', @$row->product_parameters->get('show_product_compare', '1'));
?>
                </td>
            </tr>
        </table>
    </div>
</div>

<div style="float: right; width: 50%;">
    <div class="well options">
        <legend>
            <?php 
echo JText::_('COM_TIENDA_POST_PURCHASE_ARTICLE');
?>
        </legend>
        <table class="table table-striped table-bordered" style="width: 100%;">
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form_display.php

示例10:

                        <?php 
echo TiendaSelect::coupongroup(@$row->coupon_group, 'coupon_group', $attribs);
?>
                                               
                    </td>
                </tr>
                <tr>
                    <td style="width: 125px; text-align: right;" class="key">
                        <?php 
echo JText::_('COM_TIENDA_TYPE');
?>
:
                    </td>
                    <td>
                        <?php 
echo TiendaSelect::btbooleanlist('coupon_automatic', '', @$row->coupon_automatic, 'Automatic', 'COM_TIENDA_USER_SUBMITTED');
?>
                    </td>
                </tr>                
                <tr>
                    <td style="width: 125px; text-align: right;" class="key">
                        <?php 
echo JText::_('COM_TIENDA_DESCRIPTION');
?>
:
                    </td>
                    <td>
                        <textarea name="coupon_description" rows="10" cols="55"><?php 
echo @$row->coupon_description;
?>
</textarea>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form.php

示例11: defined

defined('_JEXEC') or die('Restricted access');
$row = @$this->row;
?>

<table class="table table-striped table-bordered">
    <tbody>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_ENABLE_COUPONS');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('coupons_enabled', 'class="inputbox"', $this->row->get('coupons_enabled', '1'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_ENABLE_MULTIPLE_USER_SUBMITTED_COUPONS_PER_ORDER');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('multiple_usercoupons_enabled', 'class="inputbox"', $this->row->get('multiple_usercoupons_enabled', '0'));
?>
            </td>
            <td></td>
        </tr>
    </tbody>
</table>
开发者ID:annggeel,项目名称:tienda,代码行数:30,代码来源:orders_coupons.php

示例12:

                    	<?php 
}
?>
                        <input type="text" name="exchange_rate" id="exchange_rate" size="10" maxlength="250" value="<?php 
echo @$row->exchange_rate;
?>
" />
                    </td>
                </tr>
				<tr>
					<td width="100" align="right" class="key">
						<label for="currency_enabled">
						<?php 
echo JText::_('COM_TIENDA_ENABLED');
?>
:
						</label>
					</td>
					<td>
						<?php 
echo TiendaSelect::btbooleanlist('currency_enabled', '', @$row->currency_enabled);
?>
					</td>
				</tr>
			</table>
			<input type="hidden" name="id" value="<?php 
echo @$row->currency_id;
?>
" />
			<input type="hidden" name="task" value="" />
</form>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:form.php

示例13:

        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_CONFIG_PASSWORD_REQUIRE_SPECIAL');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('password_req_spec', 'class="inputbox"', $this->row->get('password_req_spec', '1'));
?>
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_CONFIG_PASSWORD_REQUIRE_SPECIAL_DESC');
?>
            </td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_CONFIG_LOWER_FILENAME');
?>
            </th>
            <td style="width: 150px;"><?php 
echo TiendaSelect::btbooleanlist('lower_filename', 'class="inputbox"', $this->row->get('lower_filename', '1'));
?>
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_CONFIG_LOWER_FILENAME_DESC');
?>
            </td>
        </tr>
    </tbody>
</table>
开发者ID:annggeel,项目名称:tienda,代码行数:30,代码来源:advanced_general.php

示例14: array

?>
            </th>
            <td><input type="text" name="display_tweet_message" value="<?php 
echo $this->row->get('display_tweet_message', 'Check this out!');
?>
" class="inputbox" size="35" />
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_DISPLAY_GOOGLE_PLUS1_BUTTON');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('display_google_plus1', 'class="inputbox"', $this->row->get('display_google_plus1', '1'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_DISPLAY_GOOGLE_PLUS1_BUTTON_SIZE');
?>
            </th>
            <td><?php 
$google_sizes = array();
$google_sizes[] = JHTML::_('select.option', 'small', JText::_('COM_TIENDA_GOOGLE_SMALL'));
$google_sizes[] = JHTML::_('select.option', 'medium', JText::_('COM_TIENDA_GOOGLE_MEDIUM'));
$google_sizes[] = JHTML::_('select.option', '', JText::_('COM_TIENDA_GOOGLE_STANDARD'));
$google_sizes[] = JHTML::_('select.option', 'tall', JText::_('COM_TIENDA_GOOGLE_TALL'));
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:displaysettings_social.php

示例15: defined

<?php

defined('_JEXEC') or die('Restricted access');
$row = @$this->row;
?>

<table class="table table-striped table-bordered">
    <tbody>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_FORCE_SSL_ON_CHECKOUT');
?>
            </th>
            <td><?php 
echo TiendaSelect::btbooleanlist('force_ssl_checkout', '', $this->row->get('force_ssl_checkout', '0'));
?>
            </td>
            <td></td>
        </tr>
        <tr>
            <th style="width: 25%;"><?php 
echo JText::_('COM_TIENDA_INITIAL_ORDER_STATE');
?>
            </th>
            <td><?php 
echo TiendaSelect::orderstate($this->row->get('initial_order_state', '15'), 'initial_order_state');
?>
            </td>
            <td><?php 
echo JText::_('COM_TIENDA_INITIAL_ORDER_STATE_DESC');
?>
开发者ID:annggeel,项目名称:tienda,代码行数:31,代码来源:orders_advanced.php


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