本文整理匯總了PHP中Setup::Configuration方法的典型用法代碼示例。如果您正苦於以下問題:PHP Setup::Configuration方法的具體用法?PHP Setup::Configuration怎麽用?PHP Setup::Configuration使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Setup
的用法示例。
在下文中一共展示了Setup::Configuration方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setUp
protected function setUp()
{
include_once dirname(__FILE__) . "/../Setup.php";
$config = Setup::Configuration();
include_once $config["SwiftriverCoreDirectory"] . "/ObjectModel/Content.php";
include_once dirname(__FILE__) . "/../TextForUrlParser.php";
}
示例2: setUp
protected function setUp()
{
include_once dirname(__FILE__) . "/../../../Modules/TagTheNetInterface/Setup.php";
$config = Setup::Configuration();
include_once $config["SwiftriverCoreDirectory"] . "/ObjectModel/Content.php";
include_once $config["SwiftriverCoreDirectory"] . "/ObjectModel/LanguageSpecificText.php";
include_once dirname(__FILE__) . "/../../../Modules/TagTheNetInterface/TextForUrlParser.php";
}
示例3: GetLogger
/**
* Get the shared instance for the logger
* @return \Log
*/
public static function GetLogger()
{
$log = new \Log("this message is ignored, however not supplying one throws an error :o/");
$logger = $log->singleton('file', Setup::Configuration()->CachingDirectory . "/log.log", ' ');
if (!self::Configuration()->EnableDebugLogging) {
$mask = \Log::UPTO(\PEAR_LOG_INFO);
$logger->setMask($mask);
}
return $logger;
}
示例4: InterafceWithService
/**
* Given a valid servive URI and a valid string of text
* this service wraps the TagThe.Net taggin service
*
* @param string $uri
* @param string $json
* @return string
*/
public function InterafceWithService($uri, $text)
{
$config = Setup::Configuration();
require $config["SwiftriverModulesDirectory"] . "/SwiftriverServiceWrapper/ServiceWrapper.php";
$uri = str_replace("?view=json", "", $uri);
$uri = $uri . "?view=json&text=" . $text;
$service = new \Swiftriver\Core\Modules\SiSW\ServiceWrapper($uri);
$jsonFromService = $service->MakeGETRequest();
return $jsonFromService;
}
示例5: GetLogger
public static function GetLogger()
{
$logger =& \Log::singleton('file', Setup::Configuration()->CachingDirectory . "/log.log", ' ');
return $logger;
}
示例6: GetLogger
public static function GetLogger()
{
$log = new \Log("this message is ignored, however not supplying one throws an error :o/");
$logger = $log->singleton('file', Setup::Configuration()->CachingDirectory . "/log.log", ' ');
return $logger;
}