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


PHP Template_Helper::render_template方法代码示例

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


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

示例1: get_checkout

 /**
  * get_checkout function.
  *
  * @access public
  * @return void
  */
 public function get_checkout()
 {
     $html = '';
     $types = array();
     $products = array();
     if (is_array($this->cart_items) && !empty($this->cart_items)) {
         foreach ($this->cart_items as $item) {
             $type = new Product_Type($item->product_type);
             if ($type != 'cone') {
                 $types[] = '<input type="hidden" name="cart_product_types[]" value="' . $item->product_id . '" />';
             }
             $products[] = '<input type="hidden" name="cart_product[]" value="' . $item->product_id . '" />';
         }
     }
     $data['checkout']['cart_total'] = $this->get_cart_total();
     $data['checkout']['types'] = $types;
     $data['checkout']['products'] = $products;
     return Template_Helper::render_template(__TEMPLATE_PATH__, 'checkout', $data);
 }
开发者ID:TrevorMW,项目名称:SoftServer2.0,代码行数:25,代码来源:class-cart.php

示例2: Ajax_Response

<?php

require_once '../../functions.php';
$data = $_POST;
$resp = new Ajax_Response($data['action'], true);
if (!empty($data) && is_array($data)) {
    $type = new Product_Type($data['product_type']);
    if ($type instanceof Product_Type) {
        $data['type_name'] = $type->product_type_slug;
        $data['action'] = 'add_to_cart';
        $data['fields'] = $type->get_product_form_fields($type);
        $resp->set_status(true);
        $resp->set_data(array('new_form' => Template_Helper::render_template(__TEMPLATE_PATH__, 'product_choice_form', $data)));
    } else {
        $resp->set_message('Could not load fields for ' . ucfirst($type_name) . '. Please try again.');
    }
}
echo $resp->encode_response();
die;
开发者ID:TrevorMW,项目名称:SoftServer2.0,代码行数:19,代码来源:choose_product_type.php

示例3: build_register_form

 /**
  * build_register_form function.
  *
  * @access public
  * @static
  * @return void
  */
 public static function build_register_form()
 {
     $html = '';
     $data['login']['mode'] = 'register';
     $data['login']['btn'] = 'Register';
     $data['login']['action'] = 'user_register';
     $html .= Template_Helper::render_template(__TEMPLATE_PATH__, 'login-form', $data);
     return $html;
 }
开发者ID:TrevorMW,项目名称:SoftServer2.0,代码行数:16,代码来源:class-application.php


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