forked from enwikipedia-acc/waca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (20 loc) · 827 Bytes
/
index.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
<?php
/******************************************************************************
* Wikipedia Account Creation Assistance tool *
* *
* All code in this file is released into the public domain by the ACC *
* Development Team. Please see team.json for a list of contributors. *
******************************************************************************/
namespace Waca;
use Waca\Router\PublicRequestRouter;
/*
* Public interface script
*
* THIS IS AN ENTRY POINT
*/
require_once('config.inc.php');
global $siteConfiguration;
$application = new WebStart($siteConfiguration, new PublicRequestRouter());
// This is a public interface
$application->setPublic(true);
$application->run();