You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
637 B
27 lines
637 B
<?php
|
|
/**
|
|
* Plugin Name: Stepper
|
|
* Plugin URI: PLUGIN SITE HERE
|
|
* Description: PLUGIN DESCRIPTION HERE
|
|
* Author: Philipp Lang
|
|
* Author URI: YOUR SITE HERE
|
|
* Text Domain: stepper
|
|
* Domain Path: /languages
|
|
* Version: 0.1.0
|
|
*
|
|
* @package Stepper
|
|
*/
|
|
|
|
require_once(__DIR__.'/vendor/autoload.php');
|
|
|
|
use Zoomyboy\Stepper\Stepper;
|
|
|
|
|
|
$stepper = new Stepper();
|
|
$stepper->loadEnv(__DIR__);
|
|
$stepper->url = plugin_dir_url(__FILE__);
|
|
$stepper->scriptUrl = file_exists(__DIR__.'/assets/public/hot')
|
|
? 'http://localhost:8080/'
|
|
: plugin_dir_url(__FILE__);
|
|
$stepper->initFrontend();
|
|
|