git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
18080c6
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
structure
correlatives.html.php
foo
fenris
commited
18080c6
at 2016-04-24 18:00:07
correlatives.html.php
Blame
History
Raw
<?php include_once("source/logic/server/data.php"); include_once("source/logic/server/table.php"); ?> <section class="subsection" id="grammar/pronouns/correlatives"> <header>Correlatives</header> <?php $table = new class_table ( [ new class_column ( "Domain", function ($row) { return $row["domain"]; } ), new class_column ( "Interrogative/Relative", function ($row) { return $row["interrogative"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), /* new class_column ( "Relative", function ($row) { return $row["relative"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), */ new class_column ( "Demonstrative far", function ($row) { return $row["demonstrative_far"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), new class_column ( "Demonstrative near", function ($row) { return $row["demonstrative_near"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), new class_column ( "Universal", function ($row) { return $row["universal"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), new class_column ( "Undefined", function ($row) { return $row["undefined"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), new class_column ( "Negative", function ($row) { return $row["negative"]; }, function ($value) { return implode(", ", array_map(function ($word) {return mark($word, ["word", "lang_fs"]);}, $value)); } ), ], read_json("source/data/correlatives.json") ); $table->generate(); ?> <div class="note_information">Some of these words are very unlikely to ever get used (e.g. <span class="word lang_fs">ing slag</span>). Nevertheless they exist and are listed for completeness.</div> </section>