Beispiel #1
0
 /**
  * Get the instance of the singleton (and create it if it doesn't exist yet).
  *
  * @return WPV_WPML_Integration_Embedded
  * @since 1.10
  */
 public static function get_instance() {
     if( null == self::$instance ) {
         self::$instance = new WPV_WPML_Integration_Embedded();
     }
     return self::$instance;
 }