/**
  * Create or retrieve the single instance of the class
  *
  * @since 0.1
  */
 public static function instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new grfwpInit();
         self::$instance->init();
     }
     return self::$instance;
 }