コード例 #1
0
 /**
  * Returns and/or create the single instance of this class.  
  *
  * @return  Charitable_User_Dashboard
  * @access  public
  * @since   1.2.0
  */
 public static function get_instance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new Charitable_User_Dashboard();
     }
     return self::$instance;
 }