예제 #1
0
파일: i18ntextpod.php 프로젝트: encse/anise
 public function editor_for($value, $id)
 {
     foreach (array('hu' => 'magyarul', 'en' => 'angolul') as $langkey => $lang) {
         $idT = $id . '[' . $langkey . ']';
         echo '<p><label>' . $lang . ':</label><input type="text" id="' . $idT . '" name="' . $idT . '" value="' . Pod::escapeHtml($value[$langkey]) . '" class="required"/></p>';
     }
 }
예제 #2
0
파일: textpod.php 프로젝트: encse/anise
 function editor_for($value, $id)
 {
     echo '<input type="text" id="' . $id . '" name="' . $id . '" value="' . Pod::escapeHtml($value) . '" class="required"/>';
 }