git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
77d8eec
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
adpositions.html.php
renamed structure to content
Christian Fraß
commited
77d8eec
at 2016-05-15 20:38:28
adpositions.html.php
Blame
History
Raw
<?php include_once("source/logic/server/data.php"); include_once("source/logic/server/table.php"); include_once("source/logic/server/misc.php"); ?> <section class="section" id="adpositions"> <header>Adpositions</header> <div class="note_error">This section is only a proposal yet; not part of the draft.</div> <?php $table = new class_table ( [ /* new class_column ( "Type", function ($row) { return $row["type"]; } ), */ new class_column ( "Positive absolute", _foo("positive_absolute"), _bar("word") ), new class_column ( "Positive relative", _foo("positive_relative"), _bar("word") ), new class_column ( "Positive attributive", _foo("positive_attributive"), _bar("word") ), new class_column ( "Directive absolute", _foo("directive_absolute"), _bar("word") ), new class_column ( "Directive relative", _foo("directive_relative"), _bar("word") ), ], read_json("source/data/adpositions.json") ); $table->generate(); ?> </section>