Changeset 892
- Timestamp:
- Mar 3, 2023, 11:36:26 PM (21 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UpdateTrace.php
r890 r892 2973 2973 } 2974 2974 2975 function UpdateTo892($Manager) 2976 { 2977 $Manager->Execute('ALTER TABLE `User` CHANGE `Info` `Info` TEXT CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT '';'); 2978 } 2979 2975 2980 class Updates 2976 2981 { … … 3013 3018 872 => array('Revision' => 873, 'Function' => 'UpdateTo873'), 3014 3019 873 => array('Revision' => 887, 'Function' => 'UpdateTo887'), 3020 887 => array('Revision' => 892, 'Function' => 'UpdateTo892'), 3015 3021 ); 3016 3022 } -
trunk/Application/Version.php
r891 r892 7 7 8 8 $Version = '1.0'; 9 $Revision = 89 1; // Subversion revision10 $DatabaseRevision = 8 87; // Database structure revision11 $ReleaseDate = strtotime('2023-0 1-13');9 $Revision = 892; // Subversion revision 10 $DatabaseRevision = 891; // Database structure revision 11 $ReleaseDate = strtotime('2023-03-03'); -
trunk/Modules/User/Options.php
r888 r892 15 15 <tr><td>'.T('After save translation redirect to').': </td><td>'; 16 16 $Output .= '<select name="redirecting">'. 17 18 17 '<option value="0">'.T('Nowhere').'</option>'. 18 '<option value="1"'; 19 19 if ($this->System->User->Redirecting == '1') $Output .= ' selected="selected"'; 20 20 $Output .= '>'.T('To untranslated').'</option>'; … … 36 36 $DbResult = $this->Database->query($Query); 37 37 $Output .= T('User obey selected rules').':</td><td>'; 38 while ($UserTag = $DbResult->fetch_array()) { 39 $Query = 'SELECT * FROM `UserTag` '. 40 //'LEFT JOIN `UserTagType` ON `UserTagType`.`ID` = `UserTag`.`UserTagType` '. 41 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 38 while ($UserTag = $DbResult->fetch_array()) 39 { 40 $Query = 'SELECT * FROM `UserTag` '. 41 //'LEFT JOIN `UserTagType` ON `UserTagType`.`ID` = `UserTag`.`UserTagType` '. 42 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 42 43 $DbResult2 = $this->Database->query($Query); 43 44 if ($DbResult2->num_rows != 0) $checked = true; 44 else$checked = false;45 else $checked = false; 45 46 46 47 $Output .= CheckBox('Tag'.$UserTag['ID'], $checked, 'CheckBox'); … … 50 51 51 52 $Output .= '<tr><td colspan="2"><input type="submit" value="'.T('Save').'" /></td></tr>'. 52 53 53 '</table></fieldset>'. 54 '</form>'; 54 55 55 56 $Output .= '<fieldset><legend>'.T('Translation team').'</legend>'; 56 57 $DbResult = $this->Database->query('SELECT `Id`, `Name` FROM `Team`'); 57 58 $Output .= '<a href="'.$this->System->Link('/team/?action=create').'">'.T('Create team').'</a><br />'. 58 59 60 61 59 '<a href="'.$this->System->Link('/team/?action=leave').'">'.T('Leave team').'</a><br />'. 60 '<br /><form action="'.$this->System->Link('/team/').'" method="get">'. 61 '<input type="hidden" name="action" value="gointeam"/>'. 62 '<select name="id">'; 62 63 while ($LineTeam = $DbResult->fetch_assoc()) 63 64 { … … 107 108 $Query = 'SELECT * FROM UserTagType'; 108 109 $DbResult = $this->Database->query($Query); 109 while ($UserTag = $DbResult->fetch_array()) { 110 if (array_key_exists('Tag'.$UserTag['ID'], $_POST)) { 111 $Query = 'SELECT * FROM `UserTag` '. 112 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 113 $DbResult2 = $this->Database->query($Query); 114 if ($DbResult2->num_rows == 0) { 115 $Query = 'INSERT INTO `UserTag` (`ID` ,`UserTagType`,`User` ) '. 116 'VALUES (NULL, '.$UserTag['ID'].' , '.($this->System->User->Id * 1).')'; 117 $DbResult2 = $this->Database->query($Query); 118 } 119 } else { 120 $Query = 'DELETE FROM `UserTag` '. 121 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 122 $DbResult2 = $this->Database->query($Query); 123 } 110 while ($UserTag = $DbResult->fetch_array()) 111 { 112 if (array_key_exists('Tag'.$UserTag['ID'], $_POST)) 113 { 114 $Query = 'SELECT * FROM `UserTag` '. 115 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 116 $DbResult2 = $this->Database->query($Query); 117 if ($DbResult2->num_rows == 0) 118 { 119 $Query = 'INSERT INTO `UserTag` (`ID` ,`UserTagType`,`User` ) '. 120 'VALUES (NULL, '.$UserTag['ID'].' , '.($this->System->User->Id * 1).')'; 121 $DbResult2 = $this->Database->query($Query); 122 } 123 } else 124 { 125 $Query = 'DELETE FROM `UserTag` '. 126 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($this->System->User->Id * 1); 127 $DbResult2 = $this->Database->query($Query); 128 } 124 129 } 125 130 -
trunk/Modules/User/Profile.php
r891 r892 170 170 'WHERE `User` = '.($_GET['user'] * 1); 171 171 $DbResult = $this->Database->query($Query); 172 if ($DbResult->num_rows != 0) { 172 if ($DbResult->num_rows != 0) 173 { 173 174 $Output .= T('Translator is using this rules:').'<br />'; 174 175 $Output .= '<ul>'; … … 179 180 } 180 181 181 $Output .= '<br /><fieldset><legend>'.T('Profile text').'</legend>'.htmlspecialchars(str_replace("\n", '<br/>', $UserLine['Info'])).'</fieldset><br/>'; 182 183 $Output .= '<table class="Home"><tr>'. 184 '<td>'.$this->ShowLastTranslated().'</td>'. 185 '<td>'.$this->ExportList().'</td>'. 186 '</tr></table>'; 187 $Output .= '<br />'.$this->ShowLastForum().'<br />'; 188 if ($this->System->User->Licence(LICENCE_MODERATOR)) 189 { 190 $Output .= '<fieldset><legend>Moderování</legend>'; 191 192 $Output .= '<form action="?user='.($_GET['user'] * 1).'" method="post">Přidání tagu uživateli:<br />'; 193 $Query = 'SELECT * FROM `UserTagType`'; 194 $DbResult = $this->Database->query($Query); 195 while ($UserTag = $DbResult->fetch_array()) { 196 //save: 197 if (array_key_exists('save', $_POST)) { 198 if (array_key_exists('Tag'.$UserTag['ID'], $_POST)) { 182 $UserInfo = $UserLine['Info']; 183 if ($UserInfo == null) $UserInfo = ''; 184 $UserInfo = htmlspecialchars(str_replace("\n", '<br/>', $UserInfo)); 185 $Output .= '<br /><fieldset><legend>'.T('Profile text').'</legend>'.$UserInfo.'</fieldset><br/>'; 186 187 $Output .= '<table class="Home"><tr>'. 188 '<td>'.$this->ShowLastTranslated().'</td>'. 189 '<td>'.$this->ExportList().'</td>'. 190 '</tr></table>'; 191 $Output .= '<br />'.$this->ShowLastForum().'<br />'; 192 if ($this->System->User->Licence(LICENCE_MODERATOR)) 193 { 194 $Output .= '<fieldset><legend>Moderování</legend>'; 195 196 $Output .= '<form action="?user='.($_GET['user'] * 1).'" method="post">Přidání tagu uživateli:<br />'; 197 $Query = 'SELECT * FROM `UserTagType`'; 198 $DbResult = $this->Database->query($Query); 199 while ($UserTag = $DbResult->fetch_array()) 200 { 201 //save: 202 if (array_key_exists('save', $_POST)) 203 { 204 if (array_key_exists('Tag'.$UserTag['ID'], $_POST)) 205 { 206 $Query = 'SELECT * FROM `UserTag` '. 207 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user']*1); 208 $DbResult2 = $this->Database->query($Query); 209 if ($DbResult2->num_rows == 0) 210 { 211 $Query = 'INSERT INTO `UserTag` (`ID` ,`UserTagType`,`User` ) '. 212 'VALUES (NULL, '.$UserTag['ID'].' , '.($_GET['user']*1).')'; 213 $DbResult2 = $this->Database->query($Query); 214 } 215 } else 216 { 217 $Query = 'DELETE FROM `UserTag` '. 218 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user'] * 1); 219 $DbResult2 = $this->Database->query($Query); 220 } 221 } 222 199 223 $Query = 'SELECT * FROM `UserTag` '. 200 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user']*1);224 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user'] * 1); 201 225 $DbResult2 = $this->Database->query($Query); 202 if ($DbResult2->num_rows == 0) { 203 $Query = 'INSERT INTO `UserTag` (`ID` ,`UserTagType`,`User` ) '. 204 'VALUES (NULL, '.$UserTag['ID'].' , '.($_GET['user']*1).')'; 205 $DbResult2 = $this->Database->query($Query); 206 } 207 } else { 208 $Query = 'DELETE FROM `UserTag` '. 209 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user'] * 1); 210 $DbResult2 = $this->Database->query($Query); 226 if ($DbResult2->num_rows != 0) $checked = true; 227 else $checked = false; 228 229 $Output .= CheckBox('Tag'.$UserTag['ID'], $checked, 'CheckBox'); 230 $Output .= ''.$UserTag['Text'].'<br />'; 211 231 } 212 } 213 214 $Query = 'SELECT * FROM `UserTag` '. 215 'WHERE `UserTagType` = '.$UserTag['ID'].' AND `User` = '.($_GET['user'] * 1); 216 $DbResult2 = $this->Database->query($Query); 217 if ($DbResult2->num_rows != 0) $checked = true; 218 else $checked = false; 219 220 $Output .= CheckBox('Tag'.$UserTag['ID'], $checked, 'CheckBox'); 221 $Output .= ''.$UserTag['Text'].'<br />'; 222 } 223 $Output .= '<input name="save" type="submit" value="Uložit" /></form>'; 224 225 $Output .= ' PosledníIP: <strong>'.$UserLine['LastIP'].'</strong><br />'. 232 $Output .= '<input name="save" type="submit" value="Uložit" /></form>'; 233 234 $Output .= ' PosledníIP: <strong>'.$UserLine['LastIP'].'</strong><br />'. 226 235 'Prohlížeč: <strong>'.$UserLine['UserAgent'].'</strong><br />'. 227 236 'Email: <strong>'.$UserLine['Email'].'</strong><br />'; 228 $Output .= '<br/><form action="'.$this->System->Link('/user/').'" method="post"><div>'.229 'Napsat E-mail:'.230 '<input type="text" name="email" value="'.$UserLine['Email'].'" /><br/>'.231 'Předmět:'.232 '<input type="text" name="subject" value="'.$this->System->Config['Web']['Title'].'" />'.233 '<br />'.234 '<textarea name="text" rows="20" cols="62">'.235 ''."\n".236 'S pozdravem '.$this->System->User->Name."\n".237 '--------------------------------------------------------'."\n".238 $this->System->Config['Web']['Title'].' '.$this->System->Config['Web']['Host'].$this->System->Link('/')."\n".239 '</textarea><br/>'.240 '<input type="submit" value="Odeslat" />'.241 '</div></form></fieldset>';237 $Output .= '<br/><form action="'.$this->System->Link('/user/').'" method="post"><div>'. 238 'Napsat E-mail:'. 239 '<input type="text" name="email" value="'.$UserLine['Email'].'" /><br/>'. 240 'Předmět:'. 241 '<input type="text" name="subject" value="'.$this->System->Config['Web']['Title'].'" />'. 242 '<br />'. 243 '<textarea name="text" rows="20" cols="62">'. 244 ''."\n". 245 'S pozdravem '.$this->System->User->Name."\n". 246 '--------------------------------------------------------'."\n". 247 $this->System->Config['Web']['Title'].' '.$this->System->Config['Web']['Host'].$this->System->Link('/')."\n". 248 '</textarea><br/>'. 249 '<input type="submit" value="Odeslat" />'. 250 '</div></form></fieldset>'; 242 251 } 243 252 } else $Output .= ShowMessage('Uživatel nenalezen', MESSAGE_CRITICAL); -
trunk/Modules/User/User.php
r888 r892 204 204 $this->Email = $User['Email']; 205 205 $this->Info = $User['Info']; 206 if ($this->Info == null) $this->Info = ''; 206 207 $this->PreferredVersion = $User['PreferredVersion']; 207 208 $this->PreferredVersionGame = $User['PreferredVersionGame'];
Note:
See TracChangeset
for help on using the changeset viewer.