當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FrontController::setTemplate方法代碼示例

本文整理匯總了PHP中FrontController::setTemplate方法的典型用法代碼示例。如果您正苦於以下問題:PHP FrontController::setTemplate方法的具體用法?PHP FrontController::setTemplate怎麽用?PHP FrontController::setTemplate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FrontController的用法示例。


在下文中一共展示了FrontController::setTemplate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setTemplate

 public function setTemplate($template)
 {
     if (_PS_VERSION_ >= '1.5') {
         parent::setTemplate($template);
     } else {
         $this->template = $template;
     }
 }
開發者ID:invipay,項目名稱:invipay-prestashop,代碼行數:8,代碼來源:Display.php

示例2: setTemplate

 public function setTemplate($template)
 {
     if (version_compare(_PS_VERSION_, '1.5', 'ge')) {
         parent::setTemplate($template);
     } else {
         $this->template = $template;
     }
 }
開發者ID:bonekost,項目名稱:plugin_prestashop,代碼行數:8,代碼來源:Display.php

示例3: FrontController

                    Tools::redirectLink(__PS_BASE_URI__ . '/modules/paypal/express_checkout/submit.php?' . $query);
                } else {
                    $controller = new FrontController();
                    $controller->init();
                    Tools::redirect(Context::getContext()->link->getModuleLink('paypal', 'submit', $values));
                }
            }
        } else {
            // If Cart changed, no need to keep the paypal data
            unset(Context::getContext()->cookie->{PaypalExpressCheckout::$COOKIE_NAME});
            $ppec->logs[] = $ppec->l('Cart changed since the last checkout express, please make a new Paypal checkout payment');
        }
    }
    if (_PS_VERSION_ < '1.5') {
        $display = new BWDisplay();
    } else {
        $display = new FrontController();
    }
    // Display payment confirmation
    if ($ppec->ready && Tools::getValue('get_confirmation')) {
        if (_PS_VERSION_ < '1.5') {
            $currency = new Currency((int) $ppec->getContext()->cart->id_currency);
            $ppec->getContext()->smarty->assign(array('form_action' => PayPal::getShopDomainSsl(true, true) . _MODULE_DIR_ . $ppec->name . '/express_checkout/submit.php', 'total' => Tools::displayPrice($ppec->getContext()->cart->getOrderTotal(true), $currency), 'logos' => $ppec->paypal_logos->getLogos(), 'use_mobile' => (bool) $ppec->getContext()->getMobileDevice()));
            $display->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/front/order-summary.tpl');
        }
    } else {
        $ppec->getContext()->smarty->assign(array('message' => $ppec->l('Error occurred:'), 'logs' => $ppec->logs, 'use_mobile' => $ppec->getContext()->getMobileDevice()));
        $display->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/front/error.tpl');
    }
    $display->run();
}
開發者ID:rtajmahal,項目名稱:PrestaShop-modules,代碼行數:31,代碼來源:submit.php


注:本文中的FrontController::setTemplate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。