⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 template.php

📁 ProjectPier 源码 很好的项目管理程序
💻 PHP
字号:
<?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++;	}}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -