-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrunfirst.php
29 lines (23 loc) · 1.07 KB
/
runfirst.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
// This code will generate the file autoload.php
use eftec\AutoLoadOne\AutoLoadOne;
@ini_set('max_execution_time', 300);
define("_AUTOLOAD_SELFRUN",false);
define("_AUTOLOAD_ONLYCLI",false);
define("_AUTOLOAD_ENTER",false);
define("_AUTOLOAD_COMPOSERJSON",true);
echo "<h1>Test</h1>It's an interactive test.";
echo "It will generate the file autoload.php of this folder<br>";
echo "And, when you are ready, you could test the result on <a href='runtest.php'>runtest.php</a><br>";
echo "The user and password is autoloadone/autoloadone<hr>";
include "../AutoLoadOne.php";
$auto=new AutoLoadOne();
$auto->extension='.php'; // it's not required. By default it's .php
$auto->rooturl=__DIR__; // this default value is optional, it's only for the example
$auto->fileGen=__DIR__; // this default value is optional, it's only for the example
$auto->savefile=1; // this default value is optional, it's only for the example
$extpath=str_replace("examples","examplesexternal",__DIR__);
$auto->externalPath=$extpath;
$auto->init();
$auto->process();
$auto->render();