Changeset 529 for trunk/Common
- Timestamp:
- Apr 23, 2013, 7:12:53 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r502 r529 138 138 array('Value' => $DbRow[$Index], 'Name' => $Index, 139 139 'Type' => $Item['Type'], 'Values' => $this->Values)); 140 141 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');142 140 } 143 141 } … … 172 170 $Values[$Index] = $this->FormManager->Type->ExecuteTypeEvent($UseType, 'OnSaveDb', $Parameters); 173 171 if(($Item['Type'] == 'Password') and ($Values[$Index] == '')) unset($Values[$Index]); 174 175 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');176 172 } 177 173 } … … 182 178 } else 183 179 $DbResult = $this->Database->update($this->Definition['Table'], 'Id='.$Id, $Values); 184 //echo($Database->LastQuery);185 180 } 186 181 … … 255 250 var $Database; 256 251 var $Type; 252 var $RootURL; 257 253 258 254 function __construct($Database) -
trunk/Common/Form/Types/OneToMany.php
r502 r529 5 5 class TypeOneToMany extends TypeBase 6 6 { 7 var $EditActions; 8 7 9 function OnView($Item) 8 10 { … … 24 26 function OnEdit($Item) 25 27 { 26 $Output = '<select name="'.$Item['Name'].'" >';28 $Output = '<select name="'.$Item['Name'].'" id="'.$Item['Name'].'">'; 27 29 $Type = $this->FormManager->Type->TypeDefinitionList[$Item['Type']]; 28 30 if(array_key_exists('Condition', $Type['Parameters'])) $Where = ' WHERE '.$Type['Parameters']['Condition']; … … 42 44 } 43 45 $Output .= '</select>'; 46 $Output .= '<img src="'.$this->FormManager->Root.'/images/select.png" alf="Vybrat" language="javascript" '. 47 'onclick="return popupwindow("'.$this->FormManager->Root.'/is/?a=select&t='.$Table.'&r='.$Item['Name'].'","test");" style="cursor:hand;cursor:pointer"/>'; 44 48 return($Output); 45 49 } -
trunk/Common/Global.php
r525 r529 72 72 $System->Database->ShowSQLQuery = $Config['Web']['ShowSQLQuery']; 73 73 $System->RootURLFolder = $Config['Web']['RootFolder']; 74 $System->FormManager->Root = $Config['Web']['RootFolder']; 74 75 75 76 // Check database persistence structure -
trunk/Common/Page.php
r525 r529 9 9 var $ShowRuntimeInfo = false; 10 10 var $ClearPage = false; 11 var $BasicHTML = false; 11 12 var $ParentClass = ''; 12 13 var $ShortTitle; … … 64 65 '<script type="text/javascript" src="'.$this->System->Link('/style/').$this->System->Config['Web']['Style'].'/global.js"></script>'. 65 66 '<title>'.$this->System->Config['Web']['Title'].' - '.$Path.'</title> 66 </head><body'.$BodyParam.'> 67 <div id="Title">'.$Title.'</div> 68 <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 69 if($this->System->Config['Web']['UserSupport'] == 1) 67 </head><body'.$BodyParam.'>'; 68 if($this->BasicHTML == false) 70 69 { 71 if($this->System->User->User['Id'] == null) 72 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> <a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 73 else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 74 } else $Output .= ' '; 75 // <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>'; 76 $Output .= '</div></div>'; 70 $Output .= '<div id="Title">'.$Title.'</div> 71 <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 72 if($this->System->Config['Web']['UserSupport'] == 1) 73 { 74 if($this->System->User->User['Id'] == null) 75 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> <a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; 76 else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 77 } else $Output .= ' '; 78 // <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>'; 79 $Output .= '</div></div>'; 80 } 77 81 return($Output); 78 82 } … … 82 86 global $ScriptTimeStart; 83 87 $Time = round(GetMicrotime() - $ScriptTimeStart, 2); 84 $Output = '<div id="Footer"> 85 <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |'; 86 if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |'; 87 $Output .= '</i></div></body></html>'; 88 $Output = ''; 89 if($this->BasicHTML == false) 90 { 91 $Output .= '<div id="Footer"> 92 <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |'; 93 if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |'; 94 $Output .= '</i></div>'; 95 } 96 $Output .= '</body></html>'; 88 97 return($Output); 89 98 } -
trunk/Common/Version.php
r528 r529 1 1 <?php 2 2 3 $Revision = 52 8; // Subversion revision3 $Revision = 529; // Subversion revision 4 4 $DatabaseRevision = 527; // SQL structure revision 5 $ReleaseTime = '2013-04-2 1';5 $ReleaseTime = '2013-04-23'; 6 6 7 7 ?>
Note:
See TracChangeset
for help on using the changeset viewer.