diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2013-08-04 17:05:20 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2013-08-04 17:05:20 +0200 |
commit | d529672a314e188d9effdc14a30c37a990f80ebe (patch) | |
tree | 9ad28a9de239bbe542b99846156f37002dfe7ab4 /lib/list/list_models.php | |
parent | 187883fd80675211a022a6e98f6d5d84a796373f (diff) | |
download | Bits-d529672a314e188d9effdc14a30c37a990f80ebe.tar.gz Bits-d529672a314e188d9effdc14a30c37a990f80ebe.zip |
Some changes to the way reviews work - custom styles!
Diffstat (limited to 'lib/list/list_models.php')
-rw-r--r-- | lib/list/list_models.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/list/list_models.php b/lib/list/list_models.php new file mode 100644 index 0000000..0d34856 --- /dev/null +++ b/lib/list/list_models.php @@ -0,0 +1,17 @@ +<?php + +$list_models = array( + "RTK-Kanji" => array( + "columns" => array("N#", "Kanji", "Keyword", "Strokes"), + "questions" => array( + array( + 'q' => '<p class="rtk_kr_q_2">%2</p>', + 'a' => '<p class="rtk_kr_a_2">#%0: %2 [%3]<br /><span>%1</span></p>' + ), + array( + 'q' => '<p class="rtk_kr_q_1">%1</p>', + 'a' => '<p class="rtk_kr_a_1">#%0: %1 [%3]<br /><span>%2</span></p>' + ), + ), + ), +); |