Code Search for Developers
 
 
  

Template.php from Astrum Futura at Krugle


Show Template.php syntax highlighted

<?php

/**
 * Template plugin for doing basic string replacements on emails in a batch.
 *
 * @package	Swift
 * @version	>= 2.0.0
 * @author	Chris Corbyn
 * @date	30th July 2006
 * @license	http://www.gnu.org/licenses/lgpl.txt Lesser GNU Public License
 *
 * @copyright Copyright &copy; 2006 Chris Corbyn - All Rights Reserved.
 * @filesource
 * 
 *   This library is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU Lesser General Public
 *   License as published by the Free Software Foundation; either
 *   version 2.1 of the License, or (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with this library; if not, write to
 *
 *   The Free Software Foundation, Inc.,
 *   51 Franklin Street,
 *   Fifth Floor,
 *   Boston,
 *   MA  02110-1301  USA
 *
 *    "Chris Corbyn" <chris@w3style.co.uk>
 *
 */

class Swift_Plugin_Template implements Swift_IPlugin
{
	public $pluginName = 'Template';
	private $templateVars = array();
	private $swiftInstance;
	private $template = '';
	private $count = 0;
	
	//2-dimensional
	// First level MUST be numerically indexed starting at zero
	// Second level contains the replacements
	public function __construct($template_vars=array())
	{
		$this->templateVars = $template_vars;
	}
	
	public function loadBaseObject(&$object)
	{
		$this->swiftInstance =& $object;
	}
	
	//Split the headers from the mail body
	private function getTemplate()
	{
		return substr($this->swiftInstance->currentMail[3], strpos($this->swiftInstance->currentMail[3], "\r\n\r\n"));
	}
	
	private function getHeaders()
	{
		return substr($this->swiftInstance->currentMail[3], 0, strpos($this->swiftInstance->currentMail[3], "\r\n\r\n"));
	}
	
	public function onBeforeSend()
	{
		if (empty($this->template)) $this->template = $this->getTemplate();
		
		foreach ($this->templateVars[$this->count] as $key => $replacement)
		{
			$this->swiftInstance->currentMail[3] = $this->getHeaders().str_replace('{'.$key.'}', $replacement, $this->template);
		}
		$this->count++;
	}
}

?>



See more files for this project here

Astrum Futura

Multiplayer space strategy game written in PHP5 with the Zend Framework. User interface uses Javascript/AJAX for dynamic interaction. Players compete across a hexagonal map of 10,000 sectors, planets, stars and other locations through trade and combat.

Project homepage: http://sourceforge.net/projects/astrumfutura
Programming language(s): PHP,XML
License: other

  AntiFlood.php
  ConnectionRotator.php
  Errors.php
  Example.php
  Template.php