install() 공개 정적인 메소드

Renders a web UI for installing Elgg.
public static install ( ) : void
리턴 void
예제 #1
0
<?php

$autoload_path = __DIR__ . '/vendor/autoload.php';
$autoload_available = (include_once $autoload_path);
if (!$autoload_available) {
    die("Couldn't include '{$autoload_path}'. Did you run `composer install`?");
}
\Elgg\Application::install();