Skip to content
Snippets Groups Projects
Select Git revision
  • 3d11d9e2b2bf5d8c9f6ae9e1626f1077800f9ccd
  • master default protected
  • fix/deprecated_functions
  • devel
  • feat/translations
  • feat/upgrade_to_pro_url
  • feat/lang
  • bugfix/require-interface
  • bugfix/require-once-error
  • feature/activation-hooks
  • feature/template-loader
  • feature/template-renderer
  • feature/plugin-activation
  • feature/hookable-object
  • feature/builder-pattern
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 2.0.0-beta1
  • 1.4.4
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1
  • 1.0
32 results

StaticStorage.php

Blame
  • InitCompat.php 328 B
    <?php
    /**
     * This file have to be compatible with PHP >=5.6 to gracefully handle outdated client's websites.
     */
    
    namespace WPDesk\Init;
    
    class InitCompat {
    
    	public static function from_config( $config_path ) {
    		require __DIR__ . '/platform_check.php';
    
    		$init = new PluginInit( $config_path );
    
    		return $init->init();
    	}
    
    }