/**
  * Create and return the class object.
  *
  * @access  public
  * @static
  * @since   1.3.0
  */
 public static function get_instance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new Charitable_Upgrade();
     }
     return self::$instance;
 }