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


PHP SugarConfig::get方法代碼示例

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


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

示例1: getCronDriver

 /**
  * Get cron driver
  * @return SugarCronJobs
  */
 protected function getCronDriver()
 {
     $cronDriver = $this->config->get('cron_class', 'SugarCronJobs');
     $this->logger->debug("Using {$cronDriver} as CRON driver");
     \SugarAutoLoader::requireWithCustom("include/SugarQueue/{$cronDriver}.php");
     return new $cronDriver();
 }
開發者ID:mmarum-sugarcrm,項目名稱:cli-tools,代碼行數:11,代碼來源:CronCommand.php

示例2: __construct

 /**
  * Constructor
  *
  * Reads the config file for logger settings
  *
  * @param string $loggerName
  */
 public function __construct($loggerName)
 {
     $this->config = SugarConfig::getInstance();
     $this->ext = $this->config->get('logger.file.ext', $this->ext);
     $this->logfile = $this->config->get('logger.file.name', $this->logfile);
     $this->dateFormat = $this->config->get('logger.file.dateFormat', $this->dateFormat);
     $this->logSize = $this->config->get('logger.file.maxSize', $this->logSize);
     $this->maxLogs = $this->config->get('logger.file.maxLogs', $this->maxLogs);
     $this->filesuffix = $this->config->get('logger.file.suffix', $this->filesuffix);
     $log_dir = $this->config->get('log_dir', $this->log_dir);
     $this->log_dir = $log_dir . (empty($log_dir) ? '' : '/');
     $this->full_log_file = $this->log_dir . $this->logfile . $this->ext;
     if (!empty($level)) {
         $this->defaultLevel = isset($this->levels[$level]) ? $this->levels[$level] : $this->defaultLevel;
     }
     $this->logger = new Logger($loggerName);
     $this->logger->pushHandler(new StreamHandler($this->full_log_file, $this->defaultLevel));
 }
開發者ID:butschster,項目名稱:sugarcrm_dev,代碼行數:25,代碼來源:SugarLogger.php

示例3: __construct

 /**
  * Ctor
  * @param CsrfTokenManagerInterface $manager
  * @param LoggerInterface $logger
  * @param \SugarConfig $config
  */
 public function __construct(CsrfTokenManagerInterface $manager, LoggerInterface $logger, \SugarConfig $config)
 {
     $this->manager = $manager;
     $this->logger = $logger;
     // set config options
     $this->softFailForm = (bool) $config->get('csrf.soft_fail_form', false);
     // to be removed after beta
     $this->beta = (bool) $config->get('csrf.opt_in', false);
 }
開發者ID:jglaine,項目名稱:sugar761-ent,代碼行數:15,代碼來源:CsrfAuthenticator.php


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