/**
  * Returns the Settings from the Database
  *
  * @param string $force - Forces a database call incase it was stored.
  *
  * @return array
  */
 public static function get_settings($force = false)
 {
     if (empty(self::$settings) || $force) {
         self::$settings = get_option(self::$option_key);
     }
     return self::$settings;
 }