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


PHP Templates::get方法代碼示例

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


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

示例1: ruleExists

 public function ruleExists($name)
 {
     try {
         Templates::get($name);
         return true;
     } catch (\Exception $e) {
         return false;
     }
 }
開發者ID:agpmedia,項目名稱:validator,代碼行數:9,代碼來源:ValidateFunction.php

示例2: Messages

}
$ADK_MESSAGES = new Messages();
$ADK_MESSAGES->userid = $ADK_USER_ID;
$ADK_MESSAGES->foldername = 'Inbox';
$ADK_MESSAGES->get($con);
switch ($ADK_USERGROUP_CDE) {
    case 'ADM':
        require_once 'includes/classes/Template.php';
        $ADK_MSG_TMPLS = new Templates();
        $ADK_MSG_TMPLS->get($con, $_SESSION['ADK_USER_ID']);
        $ADK_HIKERS = new Hikers();
        $ADK_HIKERS->get($con, $ADK_USER_ID);
        break;
    case 'COR':
        require_once 'includes/classes/Template.php';
        $ADK_MSG_TMPLS = new Templates();
        $ADK_MSG_TMPLS->get($con, $_SESSION['ADK_USER_ID']);
        $ADK_HIKERS = new Hikers();
        $ADK_HIKERS->get($con, $ADK_USER_ID);
        break;
    case 'HIK':
        require_once 'includes/classes/Correspondent.php';
        $ADK_HIKER = new Hiker();
        $ADK_HIKER->id = $ADK_USER_ID;
        $ADK_HIKER->get($con);
        $ADK_CORRESPONDENT = new Correspondent();
        $ADK_CORRESPONDENT->id = $ADK_HIKER->corrid;
        $ADK_CORRESPONDENT->get($con);
        break;
}
$con->close();
開發者ID:neilsimp1,項目名稱:adk,代碼行數:31,代碼來源:messages.inc.php

示例3: toCode

 public function toCode($input, $parent = NULL)
 {
     $self = $this;
     $args = (array) $this->args;
     $type = $this->type;
     $scalar = $this->testScalar;
     $this->msg = str_replace('$value', $input, $this->msg);
     $code = "\n/* {$this->type} {{{ */\n";
     $code .= Templates::get('rule')->render(compact('self', 'input', 'args', 'parent', 'type', 'scalar'), true);
     $code .= Templates::get('error')->render(compact('self', 'parent'), true);
     $code .= "/* }}} */\n";
     return $code;
 }
開發者ID:crodas,項目名稱:validator,代碼行數:13,代碼來源:Rule.php


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