forked from luizwbr/PagSeguro-VirtueMart-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPagSeguroLibrary.class.php
119 lines (100 loc) · 3 KB
/
PagSeguroLibrary.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
/**
* 2007-2014 [PagSeguro Internet Ltda.]
*
* NOTICE OF LICENSE
*
*Licensed under the Apache License, Version 2.0 (the "License");
*you may not use this file except in compliance with the License.
*You may obtain a copy of the License at
*
*http://www.apache.org/licenses/LICENSE-2.0
*
*Unless required by applicable law or agreed to in writing, software
*distributed under the License is distributed on an "AS IS" BASIS,
*WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*See the License for the specific language governing permissions and
*limitations under the License.
*
* @author PagSeguro Internet Ltda.
* @copyright 2007-2014 PagSeguro Internet Ltda.
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
class PagSeguroLibrary
{
const VERSION = "2.6.0";
public static $resources;
public static $config;
public static $log;
private static $path;
private static $library;
private static $module_version;
private static $cms_version;
private static $php_version;
public function __construct()
{
self::$path = (dirname(__FILE__));
PagSeguroAutoloader::init();
self::$resources = PagSeguroResources::init();
self::$config = PagSeguroConfig::init();
self::$log = LogPagSeguro::init();
}
public static function init()
{
if (self::$library == null) {
require_once "loader" . DIRECTORY_SEPARATOR . "PagSeguroAutoLoader.class.php";
self::verifyDependencies();
self::$library = new PagSeguroLibrary();
}
return self::$library;
}
private static function verifyDependencies()
{
$dependencies = true;
try {
if (!function_exists('curl_init')) {
$dependencies = false;
throw new Exception('PagSeguroLibrary: cURL library is required.');
}
if (!class_exists('DOMDocument')) {
$dependencies = false;
throw new Exception('PagSeguroLibrary: DOM XML extension is required.');
}
} catch (Exception $e) {
return $dependencies;
}
return $dependencies;
}
final public static function getVersion()
{
return self::VERSION;
}
final public static function getPath()
{
return self::$path;
}
final public static function getModuleVersion()
{
return self::$module_version;
}
final public static function setModuleVersion($version)
{
self::$module_version = $version;
}
final public static function getPHPVersion()
{
return self::$php_version = phpversion();
}
final public static function setPHPVersion($version)
{
self::$php_version = $version;
}
final public static function getCMSVersion()
{
return self::$cms_version;
}
final public static function setCMSVersion($version)
{
self::$cms_version = $version;
}
}