当前位置: 首页>>代码示例>>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;未经允许,请勿转载。