本文整理汇总了PHP中comquick2cartHelper::get_module方法的典型用法代码示例。如果您正苦于以下问题:PHP comquick2cartHelper::get_module方法的具体用法?PHP comquick2cartHelper::get_module怎么用?PHP comquick2cartHelper::get_module使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类comquick2cartHelper
的用法示例。
在下文中一共展示了comquick2cartHelper::get_module方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update_mod
/**
* Function used to update
*
* @param INT $called_frm //Mundhe complet this
*
* @return Array
*
* @since 1.0.0
*/
public function update_mod($called_frm = '0')
{
$lang = JFactory::getLanguage();
$lang->load('mod_quick2cart', JPATH_ROOT);
$comquick2cartHelper = new comquick2cartHelper();
jimport('joomla.application.module.helper');
if (JModuleHelper::getModule('mod_quick2cart')) {
$module = JModuleHelper::getModule('mod_quick2cart');
if (JVERSION < '1.6.0') {
$moduleParams = new JParameter($module->params);
$layout = $moduleParams->get('viewtype');
$ckout_text = $moduleParams->get('checkout_text');
} else {
$moduleParams = json_decode($module->params);
if (!empty($moduleParams)) {
$layout = $moduleParams->viewtype;
$ckout_text = $moduleParams->checkout_text;
}
}
}
if (isset($layout) && isset($ckout_text)) {
$data = $comquick2cartHelper->get_module($layout, $ckout_text);
} else {
$data = $comquick2cartHelper->get_module();
}
echo $data;
jexit();
}
示例2:
</th>
<th><?php
echo JText::_('QTC_MOD_PRICE');
?>
</th>
</tr>
</thead>
<?php
}
?>
<tbody class="qtc_modulebody">
<?php
// IF cart is empty
if (!empty($cart)) {
echo $comquick2cartHelper->get_module($params->get('viewtype'), $ckout_text);
} else {
?>
<tr>
<td colspan="2">
<div class="well"><?php
echo JText::_('CCK_CART_EMPTY_CART');
?>
</div>
</td>
</tr>
<?php
if (isset($aftercartdisplay)) {
?>
<tr>