implement TextFormatter class to include media in texts

This commit is contained in:
coderkun 2014-04-18 18:25:52 +02:00
commit f723382b93
9 changed files with 137 additions and 7 deletions

View file

@ -3,7 +3,7 @@
<?php if($i > 0) : ?>
<input type="text" name="answers[<?=$i-1?>]" value="<?=$regexs[$i-1]['answer']?>" />
<?php endif ?>
<?=\hhu\z\Utils::t($text)?>
<?=$t->t($text)?>
<?php endforeach ?>
<br /><br />

View file

@ -3,5 +3,5 @@
<span style="background-color:grey"><?=$regexs[$i-1]['answer']?></span>
<?php if($regexs[$i-1]['right']) : ?>✓<?php else: ?>✕<?php endif ?>
<?php endif ?>
<?=\hhu\z\Utils::t($text)?>
<?=$t->t($text)?>
<?php endforeach ?>