Source for file loadsmtp.php

Documentation is available at loadsmtp.php

  1. <?php
  2. /**
  3. * DOM script for loading SMTP parameter, this script is included in every script via head.php
  4. @author Gabriele Droege, DNA Bank Network <contact@dnabank-network.org>
  5. @version 2.0
  6. @package Load
  7. @copyright Copyright © 2011 DNA Bank Network http://www.dnabank-network.org<br>The contents of this file are subject to the Mozilla Public License Version 1.1
  8. @filesource
  9. @license http://www.mozilla.org/MPL/ MPL
  10. */
  11.  
  12. error_reporting(E_ALL E_WARNING);
  13.     $dom new DOMDocument('1.0''UTF-8');
  14.     if(file_exists("load/smtp.xml"))
  15.  $dom->load("load/smtp.xml")else  $dom->load("../load/smtp.xml");}    
  16.  
  17.     $SMTPSets $dom->getElementsByTagName('smtp');
  18.  
  19.     foreach ($SMTPSets as $SMTPSet{
  20.  
  21.     $Pathtest $SMTPSet->getElementsByTagName('path');
  22.     $SMTP_Path $Pathtest->item(0)->nodeValue;
  23.     $Porttest $SMTPSet->getElementsByTagName('port');
  24.     $SMTP_Port $Porttest->item(0)->nodeValue;
  25.     $Mailtest $SMTPSet->getElementsByTagName('mail');
  26.     $Email_Admin $Mailtest->item(0)->nodeValue;
  27.    
  28.     //foreach ($SMTPSets as $SMTPSet)
  29.     
  30.     global $SMTP_Path;
  31.     global $SMTP_Port;
  32.     global $Email_Admin;  
  33.     
  34.     
  35. ?>

Documentation generated on Tue, 29 Nov 2011 10:44:53 +0100 by phpDocumentor 1.4.3