Changeset 532 for trunk/Common
- Timestamp:
- Apr 24, 2013, 9:09:32 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/EmailQueue.php
r526 r532 1 1 <?php 2 2 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 } 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 } 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 } 13 40 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 150 150 } 151 151 152 // Zobrazení číselný seznamu stránek152 // Show page listing numbers 153 153 function PagesList($URL, $Page, $TotalCount, $CountPerPage) 154 154 { -
trunk/Common/Page.php
r529 r532 16 16 function __construct($System) 17 17 { 18 global $Config;19 20 18 parent::__construct($System); 21 19 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']; 24 22 } 25 23 … … 76 74 else $Output .= $this->System->User->User['Name'].' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>'; 77 75 } else $Output .= ' '; 78 // <a href="'.$this->System-> Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';76 // <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>'; 79 77 $Output .= '</div></div>'; 80 78 } … … 91 89 $Output .= '<div id="Footer"> 92 90 <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 |'; 94 93 $Output .= '</i></div>'; 95 94 } … … 99 98 100 99 function GetOutput() 101 { 102 $Output = $this->Show(); 100 { 101 try { 102 $Output = $this->Show(); 103 } catch (Exception $E) { 104 $Output = 'Chyba: '.$E->getMessage(); 105 } 103 106 if($this->ClearPage == false) 104 107 { … … 119 122 } 120 123 121 // Funkce formatovani vystupu124 // XML formating function 122 125 function FormatOutput($s) 123 126 { -
trunk/Common/RSS.php
r506 r532 16 16 } 17 17 18 function Generate( $Data)18 function Generate() 19 19 { 20 20 $Result = '<?xml version="1.0" encoding="'.$this->Charset.'" ?>'."\n". //<? -
trunk/Common/Version.php
r531 r532 1 1 <?php 2 2 3 $Revision = 53 1; // Subversion revision3 $Revision = 532; // Subversion revision 4 4 $DatabaseRevision = 527; // SQL structure revision 5 $ReleaseTime = '2013-04-2 3';5 $ReleaseTime = '2013-04-24'; 6 6 7 7 ?>
Note:
See TracChangeset
for help on using the changeset viewer.