Changeset 90
- Timestamp:
- Oct 4, 2019, 10:31:38 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r85 r90 6 6 // and system will need database update. 7 7 8 $Revision = 8 5;8 $Revision = 88; 9 9 $DatabaseRevision = 79; 10 $ReleaseTime = strtotime('201 8-01-20');10 $ReleaseTime = strtotime('2019-10-04'); -
trunk/Application/View.php
r88 r90 20 20 $Output .= $Content; 21 21 $Output .= '<br/><div style="text-align: center; font-size: small;">Verze: '.$Revision.' ('.HumanDate($ReleaseTime).')'. 22 ' <a href="http://svn.zdechov.net/trac/estetistic/browser/trunk">Zdrojový kód</a> '. 23 '<a href="http://svn.zdechov.net/trac/estetistic/log/trunk?verbose=on">Historie změn</a></div>'; 22 ' <a href="https://app.zdechov.net/estetistic/">Zdrojový kód</a></div>'; 24 23 $Output .= '</body></html>'; 25 24 echo($Output); -
trunk/Packages/Common/Application.php
r69 r90 1 1 <?php 2 3 class ModelDef 4 { 5 var $OnChange; 6 7 function __construct() 8 { 9 $this->OnChange = array(); 10 } 11 12 function DoOnChange() 13 { 14 foreach($this->OnChange as $Callback) 15 { 16 call_user_func($Callback); 17 } 18 } 19 20 function RegisterOnChange($SysName, $Callback) 21 { 22 $this->OnChange[$SysName] = $Callback; 23 } 24 25 function UnregisterOnChange($SysName) 26 { 27 unset($this->OnChange[$SysName]); 28 } 29 } 2 30 3 31 class Application extends System … … 7 35 var $ModuleManager; 8 36 var $Modules; 9 37 var $Models; 38 10 39 function __construct() 11 40 { … … 14 43 $this->ModuleManager = new AppModuleManager($this); 15 44 $this->Modules = array(); 45 $this->Models = array(); 46 } 47 48 function RegisterModel($SysName, $Model) 49 { 50 $NewModelDef = new ModelDef(); 51 $NewModelDef->Title = $Model['Title']; 52 $this->Models[$SysName] = $NewModelDef; 16 53 } 17 54 55 function UnregisterModel($SysName) 56 { 57 unset($this->Models[$SysName]); 58 } 59 18 60 function Run() 19 61 { -
trunk/Packages/Common/Common.php
r69 r90 19 19 include_once(dirname(__FILE__).'/Setup.php'); 20 20 include_once(dirname(__FILE__).'/Table.php'); 21 include_once(dirname(__FILE__).'/Process.php'); 21 22 22 23 class PackageCommon … … 32 33 { 33 34 $this->Name = 'Common'; 34 $this->Version = '1. 2';35 $this->ReleaseDate = strtotime('201 6-01-22');35 $this->Version = '1.3'; 36 $this->ReleaseDate = strtotime('2019-10-04'); 36 37 $this->Creator = 'Chronos'; 37 38 $this->License = 'GNU/GPL'; 38 $this->Homepage = 'http ://svn.zdechov.net/svn/PHPlib/Common/';39 $this->Homepage = 'https://svn.zdechov.net/PHPlib/Common/'; 39 40 } 40 41 } … … 48 49 var $Page; 49 50 50 function __construct( System $System)51 function __construct() 51 52 { 53 global $System; 54 52 55 $this->ItemPerPage = $System->Config['Web']['ItemsPerPage']; 53 56 $this->Around = $System->Config['Web']['VisiblePagingItems']; -
trunk/Packages/Common/Database.php
r69 r90 3 3 // Extended database class 4 4 // Date: 2016-01-11 5 6 function microtime_float() 7 { 8 list($usec, $sec) = explode(" ", microtime()); 9 return ((float)$usec + (float)$sec); 10 } 5 11 6 12 class DatabaseResult … … 51 57 $this->LogFile = dirname(__FILE__).'/../../Query.log'; 52 58 } 59 53 60 54 61 function Connect($Host, $User, $Password, $Database) … … 85 92 { 86 93 if(!$this->Connected()) throw new Exception(T('Not connected to database')); 87 if(($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) $QueryStartTime = microtime ();94 if(($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) $QueryStartTime = microtime_float(); 88 95 $this->LastQuery = $Query; 96 //echo('a'.$this->ShowSQLQuery.'<'.$QueryStartTime.', '.microtime_float()); 89 97 if(($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) 90 $Duration = ' ; '.round(microtime () - $QueryStartTime, 4). ' s';98 $Duration = ' ; '.round(microtime_float() - $QueryStartTime, 4). ' s'; 91 99 if($this->LogSQLQuery == true) 92 100 file_put_contents($this->LogFile, $Query.$Duration."\n", FILE_APPEND); … … 101 109 $this->insert_id = $this->PDO->lastInsertId(); 102 110 } else 103 { 111 { 104 112 $this->Error = $this->PDO->errorInfo(); 105 113 $this->Error = $this->Error[2]; … … 123 131 function insert($Table, $Data) 124 132 { 133 $this->query($this->GetInsert($Table, $Data)); 134 $this->insert_id = $this->PDO->lastInsertId(); 135 } 136 137 function GetInsert($Table, $Data) 138 { 125 139 $Name = ''; 126 140 $Values = ''; … … 137 151 $Name = substr($Name, 1); 138 152 $Values = substr($Values, 1); 139 $this->query('INSERT INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')'); 140 $this->insert_id = $this->PDO->lastInsertId(); 153 return('INSERT INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')'); 141 154 } 142 155 143 156 function update($Table, $Condition, $Data) 157 { 158 $this->query($this->GetUpdate($Table, $Condition, $Data)); 159 } 160 161 function GetUpdate($Table, $Condition, $Data) 144 162 { 145 163 $Values = ''; … … 154 172 } 155 173 $Values = substr($Values, 2); 156 $this->query('UPDATE `'.$this->Prefix.$Table.'` SET '.$Values.' WHERE ('.$Condition.')');174 return('UPDATE `'.$this->Prefix.$Table.'` SET '.$Values.' WHERE ('.$Condition.')'); 157 175 } 158 176 … … 200 218 public function __wakeup() 201 219 { 220 } 221 222 public function Transaction($Queries) 223 { 224 $this->PDO->beginTransaction(); 225 foreach ($Queries as $Query) 226 { 227 $Statement = $this->PDO->prepare($Query); 228 $Statement->execute(); 229 } 230 $this->PDO->commit(); 202 231 } 203 232 } -
trunk/Packages/Common/Table.php
r69 r90 98 98 var $Style; 99 99 100 function __construct( System $System)100 function __construct() 101 101 { 102 global $System; 103 102 104 $this->Columns = array(); 103 105 $this->Table = new TableMemory(); -
trunk/Packages/Common/Update.php
r69 r90 43 43 while($this->Revision > $DbRevision) 44 44 { 45 if(!array_key_exists($DbRevision, $this->Trace)) 46 die('Missing upgrade trace for revision '.$DbRevision); 45 47 $TraceItem = $this->Trace[$DbRevision]; 46 48 $Output .= 'Aktualizace na verzi '.$TraceItem['Revision'].':<br/>';
Note:
See TracChangeset
for help on using the changeset viewer.