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


PHP XTemplate::out_return方法代碼示例

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


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

示例1: execute

 function execute()
 {
     $list_form = new XTemplate('Home/List.html');
     $left_menu = $this->rmenu();
     $uId = get_userid();
     $infoArr = $this->fnc_get_user_info($type_id = 1, $value = $uId, $html = true);
     $gridview = $infoArr['html'];
     $list_form->assign('slide_bar', $this->slide_bar($left_menu));
     $list_form->assign('tabs', $this->set_tabs());
     $list_form->assign('gridview', $gridview);
     $list_form->assign('dialog_title', 'thành viên');
     $list_form->parse('main');
     $html = $list_form->out_return('main');
     echo $html;
 }
開發者ID:congtt,項目名稱:pj.ntk,代碼行數:15,代碼來源:Info.php

示例2: switch

 function fnc_get_user_info($type_id, $value, $html = false, $html_type = 0)
 {
     $detail_id = 0;
     $user_name = '';
     $user_code = '';
     switch ($type_id) {
         case 1:
             $detail_id = $value;
             break;
         case 2:
             $user_name = $value;
             break;
         case 3:
             $user_code = $value;
             break;
         default:
             break;
     }
     $arr_result['result'] = -1;
     if ($detail_id > 0 || $user_name != '' || $user_code != '') {
         $sSQL = "exec usp_user_info 0,'" . $user_name . "'," . (int) $detail_id . ",'" . $user_code . "'";
         $result = $this->db->query($sSQL, true, "Query failed");
         if ($aRow = $this->db->fetchByAssoc($result)) {
             $token_user = $this->md5sum($aRow['detail_id'] . $aRow['user_name'] . $aRow['position_id'] . $aRow['level_id']);
             $aRow['token_user'] = $token_user;
             $org_chart = $this->getOrgChart($aRow['dep_id']);
             $aRow['org_chart'] = $org_chart;
             $arr_result['result'] = 1;
             $arr_result['data'] = $aRow;
             if ($html) {
                 if ($html_type == 0) {
                     $list_form = new XTemplate('templates/user_info_1.html');
                 } else {
                     $list_form = new XTemplate('templates/user_info.html');
                 }
                 $list_form->assign('user_info', $aRow);
                 $list_form->assign('check_status_' . (int) $aRow['status'], 'checked="checked"');
                 $list_form->parse('main');
                 $html = $list_form->out_return('main');
                 $arr_result['html'] = $html;
             }
         }
     }
     return $arr_result;
 }
開發者ID:congtt,項目名稱:pj.ntk,代碼行數:45,代碼來源:TSDefault.class.php


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