Changeset 532 for trunk/Common


Ignore:
Timestamp:
Apr 24, 2013, 9:09:32 PM (12 years ago)
Author:
chronos
Message:
  • Upraveno: Metoda ShowMain v PageNews rozdělena do jednotlivých metod dle vybrané akce.
  • Opraveno: V souboru EmailQueue se vkládaly na výstup chybně dva znaky mezer.
  • Opraveno: Zamezení úpravy aktualit vložených bez nastaveného uživatele (jako anonym).
  • Opraveno: Odstraněny některé pevné reference na server centrala.
  • Opraveno: Uložení úpravy odkazu aktualit.
Location:
trunk/Common
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/EmailQueue.php

    r526 r532  
    1   <?php
     1<?php
    22 
    3   class EmailQueue extends Module
    4   {   
    5     function AddItem($To, $Subject, $Content, $From, $AttachmentFileId = '')
    6     {
    7       $Values = array('To' => $To,
    8         'Subject' => $Subject, 'Content' => $Content, 'Time' => 'NOW()',
    9         'From' => $From);
    10       if($AttachmentFileId != '') $Values['AttachmentFile'] = $AttachmentFileId;
    11       $this->Database->insert('EmailQueue', $Values);
    12     }
     3class EmailQueue extends Module
     4{   
     5  function AddItem($To, $Subject, $Content, $From, $AttachmentFileId = '')
     6  {
     7    $Values = array('To' => $To,
     8      'Subject' => $Subject, 'Content' => $Content, 'Time' => 'NOW()',
     9      'From' => $From);
     10    if($AttachmentFileId != '') $Values['AttachmentFile'] = $AttachmentFileId;
     11    $this->Database->insert('EmailQueue', $Values);
     12  }
     13 
     14  function Process()
     15  {
     16    $Output = '';
     17    $DbResult = $this->Database->select('EmailQueue', '*', 'Archive=0');
     18    while($DbRow = $DbResult->fetch_assoc())
     19    {     
     20      $Mail = new Mail();
     21      $Mail->AddToCombined($DbRow['To']);
     22      $Mail->Subject = $DbRow['Subject'];
     23      $Mail->From = $DbRow['From'];
     24      $Mail->AddBody(strip_tags($DbRow['Content']), 'text/plain');
     25      $Mail->AddBody($DbRow['Content'], 'text/html');
     26      if($DbRow['AttachmentFile'] != '')
     27      {
     28        $DbResult2 = $this->Database->select('File', '*', 'Id='.$DbRow['AttachmentFile']);
     29        while($File = $DbResult2->fetch_assoc())
     30          $Mail->AttachFile($this->Config['Web']['FileRootFolder'].$File['DrivePath'], $File['MimeType']);
     31      }
     32      $Mail->Send();
     33      $this->Database->update('EmailQueue', 'Id='.$DbRow['Id'], array('Archive' => 1));
     34      $this->ModuleManager->Modules['Log']->NewRecord('System', 'SendEmail', $DbRow['Id']);
     35      $Output .= 'To: '.$DbRow['To'].'  Subject: '.$DbRow['Subject'].'<br />';
     36    }   
     37    return($Output);
     38  }
     39}
    1340 
    14     function Process()
    15     {
    16       $Output = '';
    17       $DbResult = $this->Database->select('EmailQueue', '*', 'Archive=0');
    18       while($DbRow = $DbResult->fetch_assoc())
    19       {     
    20         $Mail = new Mail();
    21         $Mail->AddToCombined($DbRow['To']);
    22         $Mail->Subject = $DbRow['Subject'];
    23         $Mail->From = $DbRow['From'];
    24         $Mail->AddBody(strip_tags($DbRow['Content']), 'text/plain');
    25         $Mail->AddBody($DbRow['Content'], 'text/html');
    26         if($DbRow['AttachmentFile'] != '')
    27         {
    28           $DbResult2 = $this->Database->select('File', '*', 'Id='.$DbRow['AttachmentFile']);
    29           while($File = $DbResult2->fetch_assoc())
    30             $Mail->AttachFile($this->Config['Web']['FileRootFolder'].$File['DrivePath'], $File['MimeType']);
    31         }
    32         $Mail->Send();
    33         $this->Database->update('EmailQueue', 'Id='.$DbRow['Id'], array('Archive' => 1));
    34         $this->ModuleManager->Modules['Log']->NewRecord('System', 'SendEmail', $DbRow['Id']);
    35         $Output .= 'To: '.$DbRow['To'].'  Subject: '.$DbRow['Subject'].'<br />';
    36       }   
    37       return($Output);
    38     }
    39   }
    40  
    41   ?>
     41?>
  • trunk/Common/Global.php

    r529 r532  
    150150}
    151151
    152 // Zobrazení číselný seznamu stránek
     152// Show page listing numbers
    153153function PagesList($URL, $Page, $TotalCount, $CountPerPage)
    154154{
  • trunk/Common/Page.php

    r529 r532  
    1616  function __construct($System)
    1717  {
    18     global $Config;
    19    
    2018    parent::__construct($System);
    2119   
    22     $this->FormatHTML = $Config['Web']['FormatHTML'];
    23     $this->ShowRuntimeInfo = $Config['Web']['ShowRuntimeInfo'];
     20    $this->FormatHTML = $this->System->Config['Web']['FormatHTML'];
     21    $this->ShowRuntimeInfo = $this->System->Config['Web']['ShowRuntimeInfo'];
    2422  }
    2523
     
    7674          else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>';
    7775     } else $Output .= '&nbsp;';
    78 //   <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';
     76//   <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
    7977      $Output .= '</div></div>';
    8078    }
     
    9189      $Output .= '<div id="Footer">
    9290     <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 |';
     91      if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').
     92        ' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
    9493      $Output .= '</i></div>';
    9594    }
     
    9998
    10099  function GetOutput()
    101   {
    102     $Output = $this->Show();
     100  {
     101    try {
     102      $Output = $this->Show();
     103    } catch (Exception $E) {
     104      $Output = 'Chyba: '.$E->getMessage();
     105    }
    103106    if($this->ClearPage == false)
    104107    {
     
    119122  }
    120123
    121   // Funkce formatovani vystupu
     124  // XML formating function
    122125  function FormatOutput($s)
    123126  {
  • trunk/Common/RSS.php

    r506 r532  
    1616  }
    1717
    18   function Generate($Data)
     18  function Generate()
    1919  {
    2020    $Result = '<?xml version="1.0" encoding="'.$this->Charset.'" ?>'."\n". //<?
  • trunk/Common/Version.php

    r531 r532  
    11<?php
    22
    3 $Revision = 531; // Subversion revision
     3$Revision = 532; // Subversion revision
    44$DatabaseRevision = 527; // SQL structure revision
    5 $ReleaseTime = '2013-04-23';
     5$ReleaseTime = '2013-04-24';
    66
    77?>
Note: See TracChangeset for help on using the changeset viewer.