Core
3 years ago
Exception
3 years ago
Config.php
3 years ago
Curl.php
3 years ago
Helper.php
3 years ago
RequestHandler.php
3 years ago
Response.php
3 years ago
Stream.php
3 years ago
Config.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | namespace BackupGuard; |
| 4 | |
| 5 | class Config |
| 6 | { |
| 7 | const URL = 'https://check.jetlicense.com/v2'; |
| 8 | const CHANGELOG_URL = 'https://changelog.jetbackup.com/jetbackup/wordpress/changelog.txt'; |
| 9 | const VERSION_URL = 'https://repo.jetlicense.com/wordpress/jetbackup/version.txt'; |
| 10 | const DOWNLOAD_URL = 'https://repo.jetlicense.com/wordpress/jetbackup/'; |
| 11 | const PLUGIN_DESC = 'JetBackup is the most complete WordPress site backup and restore plugin. We offer the easiest way to backup, restore or migrate your site. You can backup your files, database or both.'; |
| 12 | const PLUGIN_AUTHOR = 'JetBackup'; |
| 13 | } |
| 14 |