Skip to content
Snippets Groups Projects
Select Git revision
  • 891c8b299e9580d27eacecd81d8e83afe84443bf
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

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