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


PHP _root::getLog方法代碼示例

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


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

示例1: can

 /**
  * @access public
  * @return bool retourne true/false selon qu'on est autorise ou non a faire $action sur $ressource
  * @param string $action action qu'on autorise sur $ressource
  * @param string $ressource ressource l'action est autorise sur $ressource	
  */
 public function can($action, $ressource)
 {
     $ok = true;
     if (!isset($this->tabAllowDeny[$ressource])) {
         $ok = false;
     }
     if (!isset($this->tabAllowDeny[$ressource][$action])) {
         $ok = false;
     }
     if (_root::getConfigVar('site.mode') == 'dev') {
         $tAskCan = _root::getConfigVar('tAskCan');
         $tAskCan[] = array($action, $ressource, $ok);
         _root::setConfigVar('tAskCan', $tAskCan);
     }
     if ($ok) {
         $sOk = 'oui';
     } else {
         $sOk = 'non';
     }
     _root::getLog()->info('ACL can "' . $action . '" on "' . $ressource . '" ? : ' . $sOk);
     return $ok;
 }
開發者ID:clavat,項目名稱:mkMarket,代碼行數:28,代碼來源:plugin_gestionuser.php

示例2: delete

 /** 
  * supprime un enregistrement
  * @access public
  * @param object $oRow
  */
 public function delete($oRow)
 {
     $this->getSgbd()->delete($this->sTable, $oRow->getWhere());
     /*LOG*/
     _root::getLog()->info('sql delete:' . $this->getSgbd()->getRequete());
 }
開發者ID:clavat,項目名稱:mkframework,代碼行數:11,代碼來源:abstract_model.php

示例3: parseUrl

    /** 
     * parse l'url rewrite pour en extraire les parametres (nav, parametres...) 
     * @access public
     * @param string $sUrl url
     */
    public function parseUrl($sUrl)
    {
        $sRootScript = $_SERVER['SCRIPT_NAME'];
        $sRootScript = str_replace(_root::getConfigVar('navigation.scriptname'), '', $sRootScript);
        $sUrl = str_replace($sRootScript, '', $sUrl);
        /*LOG*/
        _root::getLog()->info('plugin_routing parseUrl(' . $sUrl . ')');
        if (is_array($this->tRoute)) {
            foreach ($this->tRoute as $sPattern => $tUrl) {
                $sPattern = preg_replace('/:([^:])*:/', '([^/]*)', $sPattern);
                $sPattern = preg_replace('/\\//', '\\/', $sPattern);
                if (preg_match_all('/^' . $sPattern . '$/', $sUrl, $tTrouve)) {
                    _root::getRequest()->loadModuleAndAction($tUrl['nav']);
                    if (isset($tUrl['tParam']) and is_array($tTrouve[1])) {
                        $j = 0;
                        foreach ($tTrouve as $i => $found) {
                            if ($i == 0) {
                                continue;
                            }
                            $j = $i - 1;
                            _root::setParam($tUrl['tParam'][$j], $found[0]);
                        }
                    }
                    if (isset($tUrl['tParamHidden'])) {
                        foreach ($tUrl['tParamHidden'] as $key => $val) {
                            _root::setParam($key, $val);
                        }
                    }
                    return;
                }
            }
            /*LOG*/
            _root::getLog()->info('plugin_routing regle non trouve, 
				utilisation de 404 loadModuleAndAction(' . $this->tRoute['404']['nav'] . ')');
            if (_root::getConfigVar('urlrewriting.use4O4') == 1) {
                _root::getRequest()->loadModuleAndAction($this->tRoute['404']['nav']);
            }
        }
    }
開發者ID:clavat,項目名稱:mkMarket,代碼行數:44,代碼來源:plugin_routing.php

示例4: load

 /** 
  * retourne le contenu d'un objet _tpl a l'emplacement $sPlace
  * @access public
  * @return string
  * @param string $sPlace
  */
 public function load($sPlace)
 {
     /*LOG*/
     _root::getLog()->info('-layout: chargement/affichage place [' . $sPlace . ']');
     if (!isset($this->_tContent[$sPlace])) {
         return null;
     }
     $sLoad = '';
     foreach ($this->_tContent[$sPlace] as $oTpl) {
         $sLoad .= $oTpl->show();
     }
     return $sLoad;
 }
開發者ID:clavat,項目名稱:mkframework,代碼行數:19,代碼來源:class_layout.php

示例5: choose

 protected function choose($sPath)
 {
     if (!file_exists($sPath) and !file_exists($sPath . _root::getConfigVar('template.extension'))) {
         /*LOG*/
         _root::getLog()->error('vue ' . $sPath . ' et  inexistant');
         throw new Exception('vue ' . $sPath . ' et ' . $sPath . _root::getConfigVar('template.extension') . ' inexistant');
     }
     $this->_sPath = $sPath;
 }
開發者ID:clavat,項目名稱:mkframework,代碼行數:9,代碼來源:class_view.php


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