forked from iopietro/Travianz-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Step 2 of installation process - creating config file
- Loading branch information
Showing
10 changed files
with
331 additions
and
736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ Desktop.ini | |
.idea | ||
|
||
/vendor/ | ||
/App/Config/local.neon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
config: | ||
serverName: %SERVERNAME% | ||
timeZone: %STIMEZONE% | ||
|
||
starDate: %SSTARTDATE% | ||
starTime: %SSTARTTIME% | ||
|
||
speed: %SPEED% | ||
|
||
worldSize: %MAX% | ||
|
||
troopSpeed: %INCSPEED% | ||
|
||
evansionSpeed: %EVASIONSPEED% | ||
|
||
traderCapacity: %TRADERCAP% | ||
|
||
crannyCapacity: %CRANNYCAP% | ||
|
||
trapMultiplier: %TRAPPERCAP% | ||
|
||
storageMultiplier: %STORAGE_MULTIPLIER% | ||
|
||
quest: %QUEST% | ||
|
||
protection: %BEGINNER% | ||
|
||
worldWonder: %WW% | ||
|
||
showNatars: %SHOW_NATARS% | ||
|
||
natarsMultiplier: %NATARS_UNITS% | ||
|
||
natureRegeneration: %NATURE_REGTIME% | ||
|
||
autoActivation: %ACTIVATE% | ||
|
||
plusTime: %PLUS_TIME% | ||
|
||
productionBoostTime: %PLUS_PRODUCTION% | ||
|
||
medalInterval: %MEDALINTERVAL% | ||
|
||
greatWorkShop: %GREAT_WKS% | ||
|
||
tourTreshold: %TS_THRESHOLD% | ||
|
||
registraionOpen: %REG_OPEN% | ||
|
||
peace: %PEACE% | ||
|
||
log: %LOG% | ||
|
||
newsBoxOne: %BOX1% | ||
newsBoxTwo: %BOX2% | ||
newsBoxThree: %BOX3% | ||
|
||
dibi: | ||
host: %SSERVER% | ||
username: %SUSER% | ||
password: %SPASS% | ||
database: %SDB% | ||
lazy: TRUE | ||
|
||
adminStatistics: %ARANK% | ||
adminName: %ANAME% | ||
adminEmail: %AEMAIL% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
namespace App\InstallModule\Presenters; | ||
|
||
use Nette; | ||
|
||
class DataFormPresenter extends Nette\Application\UI\Presenter | ||
{ | ||
|
||
|
||
public function actionDefault() | ||
{ | ||
|
||
} | ||
|
||
public function renderDefault() | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{block customJS} | ||
{include ../script.tpl} | ||
{/block} | ||
|
||
{block menu} | ||
{include ../menu.latte} | ||
{/block} | ||
|
||
{block content} | ||
<div class="progress_bar"> | ||
<span>Step 2 from 7 </span> | ||
</div> | ||
|
||
{control configForm} | ||
{/block} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{block customJS} | ||
{include ../script.tpl} | ||
{/block} | ||
|
||
{block menu} | ||
{include ../menu.latte} | ||
{/block} | ||
|
||
{block content} | ||
<div class="progress_bar"> | ||
<span>Step 3 from 7 </span> | ||
</div> | ||
|
||
|
||
<center> | ||
<a n:href=":Install:Field:default">Next</a> | ||
</center> | ||
{/block} |
Empty file.
Oops, something went wrong.