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


PHP tpl::singleton方法代碼示例

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


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

示例1: __construct

 /**
  * 控製器構造函數
  *
  * 當子類實現自己的控製器構造函數時,必須在構造函數體內第一行調用: parent::__construct();
  */
 function __construct()
 {
     global $__core_env;
     $rand = rand(1000, 9999);
     $__core_env['__LIUSHUIHAO__'] = time() . $UID . $rand;
     $this->__out =& $__core_env['out'];
     $this->_tpl = tpl::singleton();
 }
開發者ID:srdc2014,項目名稱:vhms,代碼行數:13,代碼來源:control.php

示例2: init

 /**
  * 
  * 初始化一個節點
  * @param $node 節點名稱
  * @param $level 初始化級別
  * 0   全部(首次初始化開始)
  * 1  除首次初始化全部
  * @deprecated vhms上不應該調用這個方法
  */
 public function init($node, $config_flag, $init_flag, $reboot_flag)
 {
     trigger_error('init方法廢棄');
     $node_cfg = $GLOBALS['node_cfg'][$node];
     $whm = $this->makeWhm($node);
     $result = true;
     if ($config_flag == 1) {
         /*
          * 生成數據庫連接文件etc/vh_db.xml
          * 這個文件為什麽要放到etc呢?而不放到ext下麵?
          * 問得好!權限問題,數據庫連接文件包含重要的密碼信息,要確保除超級用戶外無人可訪問。
          * 而ext目錄下麵是擴展目錄,普通用戶需要讀和運行的權限。
          * 我們可以在ext/templete.xml放入一條<!--#include etc/vh_db.xml -->,把數據庫連接文件包含進來.
          * 這樣就可以加載etc/vh_db.xml文件了。
          */
         $driver = "bin/vhs_sqlite";
         $win = $node_cfg['win'];
         if ($win) {
             $driver .= ".dll";
         } else {
             $driver .= ".so";
         }
         //$phpmyadmin_password = getRandPasswd(12);
         $tpl = tpl::singleton();
         //$tpl->assign('phpmyadmin_password',$phpmyadmin_password);
         $tpl->assign('win', $win);
         $tpl->assign('skey', $GLOBALS['skey']);
         $tpl->assign('node', $node);
         $tpl->assign('driver', $driver);
         $tpl->assign('node_db', $GLOBALS['node_db']);
         if ($GLOBALS['node_db'] != 'sqlite') {
             $tpl->assign('col_map', daocall('vhost', 'getColMap', array($node)));
             $tpl->assign('load_sql', daocall('vhost', 'getLoadSql', array($node)));
             $tpl->assign('flush_sql', daocall('vhost', 'getFlushSql', array(null)));
             $tpl->assign('load_info_sql', daocall('vhostinfo', 'getLoadInfoSql', array(null)));
             $tpl->assign('table', daocall('vhost', 'getTable'));
             $tpl->assign('col', daocall('vhost', 'getCols'));
             global $db_cfg;
             if ($db_cfg['ftp']) {
                 $db = $db_cfg['ftp'];
             } else {
                 $db = $db_cfg['default'];
             }
             $db_local = $this->isLocalHost($db['host']);
             $node_local = $this->isLocalHost($node_cfg['host']);
             if ($db_local && !$node_local) {
                 $host = $_SERVER['SERVER_ADDR'];
                 if ($host == "") {
                     $host = $_SERVER['SERVER_NAME'];
                 }
                 if ($host == "" || $this->isLocalHost($host)) {
                     trigger_error("Cann't init node,I Cann't translate the db host.");
                     return false;
                 }
                 //如果db host是local,而節點不是local,則要替換db的host為公網IP
                 $db['host'] = $host;
             }
             $tpl->assign('db', $db);
         }
         $tpl->assign('dev', $node_cfg['dev']);
         $whmCall = new WhmCall('core.whm', 'write_file');
         $whmCall->addParam('file', 'etc/vh_db.xml');
         $content = $tpl->fetch('config/vh_db.xml');
         $whmCall->addParam('content', base64_encode($content));
         $result = $whm->call($whmCall);
         /*
          * 寫入模板文件,etc/templete.xml
          */
         $content = $tpl->fetch('config/templete.xml');
         $whmCall = new WhmCall('core.whm', 'write_file');
         $whmCall->addParam('file', 'ext/templete.xml');
         $whmCall->addParam('content', base64_encode($content));
         $result = $whm->call($whmCall);
         /*
          * 寫入ftp配置文件
          */
         $whmCall = new WhmCall('core.whm', 'write_file');
         if ($win) {
             $content = $tpl->fetch('config/linxftp.conf');
             $whmCall->addParam('file', 'etc/linxftp.conf');
         } else {
             $content = $tpl->fetch('config/proftpd.conf');
             $whmCall->addParam('file', '/vhs/proftpd/etc/proftpd.conf');
         }
         $whmCall->addParam('content', base64_encode($content));
         $result = $whm->call($whmCall);
         /*
          * 寫do_config.php
          */
         $content = $tpl->fetch('config/db_config.conf');
         $whmCall = new WhmCall('core.whm', 'write_file');
//.........這裏部分代碼省略.........
開發者ID:srdc2014,項目名稱:vhms,代碼行數:101,代碼來源:nodes.api.php


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