Skip to content
Snippets Groups Projects
Select Git revision
  • 244f79a30646bd9c531b7b84fd2fd3ed8833b5a0
  • master default protected
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.3.0-beta1
  • 1.2.1
  • 1.2.0
  • 1.2.0-beta5
  • 1.2.0-beta4
  • 1.2.0-beta3
  • 1.2.0-beta2
  • 1.2.0-beta1
  • 1.1.0
  • 1.0.0
21 results

AlwaysDisplayDisplayDecision.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();
    	}
    
    }