Changeset 71 for trunk/form.php
- Timestamp:
- Feb 6, 2009, 4:55:48 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form.php
r70 r71 20 20 21 21 $User = @$_SESSION['User']; 22 $IDUser = $Database->SQLCommand('SELECT * FROM user W hereid = '.$Line['User']);22 $IDUser = $Database->SQLCommand('SELECT * FROM user WHERE id = '.$Line['User']); 23 23 $LineUser = mysql_fetch_array($IDUser); 24 24 25 echo('Skupina: <strong>'.$TranslationTree[$GroupId]['Name'].'</strong><br />'); 25 26 26 27 if(($Line['Language'] <> 0) and ($LineUser['user'] <> '')) echo('Přeložil: <strong>'.$LineUser['user'].'</strong> <br />'); … … 42 43 } 43 44 44 // kontrolování textů45 $ID_translation = $TextID;46 $type_translation = 1;47 $check = mysql_fetch_array($Database->SQLCommand('SELECT * FROM tag WHERE ID_user = '.$_SESSION['UserID'].' AND ID_translation = '.$ID_translation.' AND type_translation = '.$type_translation));48 echo('<form action="action.php?group='.$GroupId.'" method="post" name="check">');49 if($check['tag'] == 1)50 echo('<input name="0" type="submit" value="Odebrat z vlastního výběru" />');51 else52 echo('<input name="1" type="submit" value="Přidat do vlastního výběru" />');53 echo(' <input type="hidden" name="ID_translation" value="'.$ID_translation.'" />54 <input type="hidden" name="type_translation" value="'.$type_translation.'" />55 </form>');56 if($Line['admin_check'] <> 0)57 {58 echo('<b>Překlad byl zkontrolován adminem</b><br />');59 }60 if(Licence(LICENCE_ADMIN))61 {62 $admin_check = mysql_fetch_array($Database->SQLCommand('SELECT ID FROM '.$Table.' Where entry = '.$Line['entry'].' AND admin_check = 1 AND ID <> '.$TextID));63 if(isset($admin_check['ID']))64 echo('Již byla zkontrolována adminem jiná verze překladu: <a href="form.php?group='.$GroupId.'&ID='.$admin_check['ID'].'">'.$admin_check['ID'].'</a><br />');65 }66 45 $number_version = mysql_fetch_array($Database->SQLCommand('SELECT count(*) FROM '.$Table.' Where entry = '.$Line['entry'].' AND Language <> 0')); 67 46 echo('Počet verzí: <b>'.$number_version['count(*)'].'</b> '); … … 74 53 echo('<input type="submit" value="Uložit do rozepsaných" name="save" Title="Klikněte na uložit pro pozdější dokončení překladu" /> 75 54 <input type="submit" value="Dokončeno" name="End" Title="Klikněte na Dokončeno jesli jsou všechny texty hotové a chcete již publikovat" />'); 76 }77 78 if (Licence(LICENCE_MODERATOR) and ($Line['Language'] <> 0))79 {80 echo('<input type="submit" value="Opravit" name="Repair" Title="Opravit po uživateli chyby (pouze moderátor)" />');81 }82 if(Licence(LICENCE_MODERATOR) and ($Line['Language'] <> 0))83 {84 // echo '<input type="submit" value="Opravit Q" name="Repair"> Klikněte Jestli si přejete opravit chyby v Questu<br>';85 86 echo(' <input type="hidden" name="UserRepair" value="'.$Line['User'].'" />');87 echo(' <a style="color: Red" title="smazat (pouze moderátor)" href="action.php?group='.$GroupId.'&action=delete&delete=1&ID='.$TextID.'">x</a>88 <a style="color: Red" title="Není hotovo (pouze moderátor)" href="action.php?group='.$GroupId.'&action=NotComplete&NotComplete=1&ID='.$TextID.'"><-</a>');89 if(Licence(LICENCE_ADMIN))90 {91 if($Line['admin_check'] <> '1')92 {93 echo(' <a style="color: Green" title="Zkontrolováno (pouze admin)" href="action.php?group='.$GroupId.'&action=admin_check&admin_check=1&ID='.$TextID.'"><b>+</b></a>');94 } else95 {96 echo(' <a style="color: Green" title="Zrušit zkontrolování (pouze admin)" href="action.php?group='.$GroupId.'&action=admin_check&admin_check=0&ID='.$TextID.'"><b>-</b></a>');97 }98 }99 55 } 100 56 … … 128 84 <th>'.$TextItem['Name'].'</th> 129 85 <td width="300">'.htmlspecialchars($LineAJ[$TextItem['Column']]).'</td> 130 <td><textarea rows="8" style="width: 300px; height=100%;" name="'.$TextItem['Column'].'">'.htmlspecialchars($Line[$TextItem['Column']]).'</textarea></td></tr>');86 <td><textarea rows="8" style="width: 300px; height=100%;" id="'.$TextItem['Column'].'" name="'.$TextItem['Column'].'">'.htmlspecialchars($Line[$TextItem['Column']]).'</textarea></td></tr>'); 131 87 } 132 88 echo('</table>
Note:
See TracChangeset
for help on using the changeset viewer.