Changeset 16


Ignore:
Timestamp:
Dec 27, 2022, 3:32:33 PM (16 months ago)
Author:
chronos
Message:
  • Modified: Code cleanup.
Location:
Common
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Common/Database.php

    r14 r16  
    9595    if (($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) $QueryStartTime = microtime_float();
    9696    $this->LastQuery = $Query;
    97     //echo('a'.$this->ShowSQLQuery.'<'.$QueryStartTime.', '.microtime_float());
    9897    if (($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true))
    9998    {
     
    203202    $Name = substr($Name, 1);
    204203    $Values = substr($Values, 1);
    205     //echo('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES ('.$Values.')<br />');
    206204    $this->query('REPLACE INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')');
    207     //echo($this->error().'<br>');
    208205  }
    209206
     
    234231  public function Transaction(array $Queries): void
    235232  {
    236     //echo('|'."\n");
    237233    $this->PDO->beginTransaction();
    238234    foreach ($Queries as $Query)
    239235    {
    240       //echo('|'.$Query."\n");
    241236      $Statement = $this->PDO->prepare($Query);
    242237      $Statement->execute();
  • Common/Locale.php

    r14 r16  
    7575            $Previous = strtolower(substr($Content, strpos($Content, 'T(') - 1, 1));
    7676            $Content = substr($Content, strpos($Content, 'T(') + 2);
    77             $Ord = ord($Previous);
    78             //echo($Ord.',');
     77            $Ord = ord($Previous);           
    7978            if (!(($Ord >= ord('a')) and ($Ord <= ord('z'))))
    8079            {
  • Common/Modules/ModuleManager.php

    r14 r16  
    250250        'Type' => ModelColumnType::GetName($Field->Type), 'Nullable' => (int)$Field->Nullable));
    251251    }
     252    if ($ModelDesc->DefaultValues != null)
     253    {
     254      $Values = call_user_func('self::'.$ModelDesc->DefaultValues);
     255      foreach ($Values as $Value)
     256      {
     257        $this->Database->insert($ModelDesc->Name, $Value);
     258      }
     259    }
    252260  }
    253261
Note: See TracChangeset for help on using the changeset viewer.