/**
  * Plugin Loader init
  * @static
  * @since 1.0
  */
 public static function init()
 {
     self::check_for_upgrade();
     self::$settings = get_option('WCSSC_options') ? get_option('WCSSC_options') : array();
     self::include_files();
     self::call_wp_hooks();
     new WCSSC_Settings();
 }