Skip to content
Snippets Groups Projects
Select Git revision
  • 5d53fa299ed4ae7adc51ad86c757fe437c2cca02
  • 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

GetParametersDisplayDecision.php

Blame
  • wpinit 388 B
    #!/usr/bin/env php
    <?php
    
    use WPDesk\Init\Dumper\PhpFileDumper;
    
    include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
    
    $filename = $argv[1] ?? null;
    
    $parser = new \WPDesk\Init\PluginHeaderParser();
    
    $data = $parser->parse( $filename );
    
    $dumper = new PhpFileDumper();
    $dumper->dump( $parser->parse( $filename ), $argv[2] );
    
    //echo "Compile static plugin resources.";