本文整理汇总了PHP中PagSeguroLibrary::getPath方法的典型用法代码示例。如果您正苦于以下问题:PHP PagSeguroLibrary::getPath方法的具体用法?PHP PagSeguroLibrary::getPath怎么用?PHP PagSeguroLibrary::getPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PagSeguroLibrary
的用法示例。
在下文中一共展示了PagSeguroLibrary::getPath方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addClass
private function addClass($dir, $class)
{
$file = PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . $dir . DIRECTORY_SEPARATOR . $class . '.class.php';
if (file_exists($file) && is_file($file)) {
require_once $file;
}
}
示例2: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_RESOURCES', true);
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "resources" . DIRECTORY_SEPARATOR . "PagSeguroResources.php";
$varName = self::VAR_NAME;
if (isset(${$varName})) {
self::$data = ${$varName};
unset(${$varName});
} else {
throw new Exception("Resources is undefined.");
}
}
示例3: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_CONFIG', true);
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "PagSeguroConfig.php";
$varName = self::VARNAME;
if (isset(${$varName})) {
self::$data = ${$varName};
unset(${$varName});
} else {
throw new Exception("Config is undefined.");
}
}
示例4: __autoload
function __autoload($class)
{
$dirs = array('domain', 'exception', 'parser', 'service', 'utils', 'helper', 'config', 'resources', 'log');
foreach ($dirs as $d) {
$file = PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . $d . DIRECTORY_SEPARATOR . $class . '.class.php';
if (file_exists($file) && is_file($file)) {
require_once $file;
return true;
}
}
return false;
}
示例5: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_CONFIG', true);
if (!class_exists('PagSeguroConfigWrapper')) {
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "PagSeguroConfigWrapper.php";
}
$wrapper = new PagSeguroConfigWrapper();
if (method_exists($wrapper, 'getConfig')) {
self::$data = $wrapper->getConfig();
} else {
throw new Exception("Config is undefined.");
}
}
示例6: createFile
/**
* Creates the log file
* @throws Exception
* @return boolean
*/
public static function createFile()
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
if ($f = @fopen(self::$fileLocation, "a")) {
fclose($f);
} else {
throw new Exception("Can't create log file. Permission denied. File location: " . self::$fileLocation);
}
}
示例7: createFile
/**
* Creates the log file
* @throws Exception
* @return boolean
*/
public static function createFile()
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
try {
$f = fopen(self::$fileLocation, "a");
fclose($f);
} catch (Exception $e) {
echo $e->getMessage() . " - Can't create log file. Permission denied. File location: " . self::$fileLocation;
}
}
示例8: createFile
public static function createFile($logFile = false)
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $logFile ? $logFile : $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
try {
$f = fopen(self::$fileLocation, "a");
if (!$f) {
throw new Exception('Unable to open the input file');
}
fclose($f);
return true;
} catch (Exception $e) {
echo $e->getMessage() . " - Can't create log file. Permission denied. File location: " . self::$fileLocation;
return false;
}
}
示例9: createFile
public static function createFile()
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro' . mt_rand() . '.log';
self::$fileLocation = $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
Configuration::updateValue('PAGSEGURO_LOG_FILELOCATION', "/modules/pagseguro/features/PagSeguroLibrary/" . $defaultName);
try {
$f = fopen(self::$fileLocation, "a");
if (!$f) {
throw new Exception('Unable to open the input file');
}
fclose($f);
return true;
} catch (Exception $e) {
echo $e->getMessage() . " - Can't create log file. Permission denied. File location: " . self::$fileLocation;
return false;
}
}