Esempio n. 1
0
 /**
  * Get ConfigPress parameter
  * 
  * @param string $param
  * @param mixed $default
  * 
  * @return mixed
  * 
  * @access public
  * @static
  */
 public static function getParam($param, $default = null)
 {
     if (class_exists('ConfigPress')) {
         $response = ConfigPress::get($param, $default);
     } else {
         $response = $default;
     }
     return self::parseParam($response, $default);
 }
Esempio n. 2
0
 /**
  * Bootstrap the ConfigPress plugin
  * 
  * Register language domain and create a single instance of ConfigPress
  * object
  * 
  * @return void
  * 
  * @access public
  */
 public static function bootstrap()
 {
     if (is_null(self::$_instance)) {
         //register language domain
         load_plugin_textdomain(CONFIGPRESS_KEY, false, __DIR__ . '/lang');
         //create an instance of itself
         self::$_instance = new self();
     }
 }