Skip to content

Instantly share code, notes, and snippets.

@cafreamoroso
Created June 2, 2012 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cafreamoroso/2859426 to your computer and use it in GitHub Desktop.
Save cafreamoroso/2859426 to your computer and use it in GitHub Desktop.
<?
/*
* Majestic SDK skeleton;
* provides a central point for accessing majestic environments and other configurations.
*/
class Majestic {
const STAGING_HOST = 'fbsocialapp.co';
const LIVE_HOST = 'socialapps.co';
protected $server;
/*
* __construct()
* @param $arg
*/
function __construct() {
if (!empty($_SERVER)) {
$this->server = $_SERVER;
} else {
throw new Exception('Majestic SDK should run in a server');
}
}
/**
* public function for interfacing with environmentCheck
*/
function getCurrentEnvironment() {
return self::environmentCheck();
}
/**
* Returns a string if running in one of majestic servers otherwise returns false
* String can be 'staging' or 'live'
*/
private function environmentCheck() {
if ( strstr($this->server['SERVER_NAME'], self::STAGING_HOST)) {
return 'staging';
}
if ( strstr($this->server['SERVER_NAME'], self::LIVE_HOST)) {
return 'live';
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment