| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * MySQL Resource | 
					
						
							|  |  |  |  * Resource Implementation based on the Custom API to use | 
					
						
							|  |  |  |  * MySQL as the storage resource for Smarty's templates and configs. | 
					
						
							|  |  |  |  * Table definition: | 
					
						
							|  |  |  |  * <pre>CREATE TABLE IF NOT EXISTS `templates` ( | 
					
						
							|  |  |  |  *   `name` varchar(100) NOT NULL, | 
					
						
							|  |  |  |  *   `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | 
					
						
							|  |  |  |  *   `source` text, | 
					
						
							|  |  |  |  *   PRIMARY KEY (`name`) | 
					
						
							|  |  |  |  * ) ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre> | 
					
						
							|  |  |  |  * Demo data: | 
					
						
							|  |  |  |  * <pre>INSERT INTO `templates` (`name`, `modified`, `source`) VALUES ('test.tpl', "2010-12-25 22:00:00", '{$x="hello world"}{$x}');</pre> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package Resource-examples | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @author  Rodney Rehm | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | class Smarty_Resource_Mysql extends Smarty_Resource_Custom | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     // PDO instance
 | 
					
						
							|  |  |  |     protected $db; | 
					
						
							|  |  |  |     // prepared fetch() statement
 | 
					
						
							|  |  |  |     protected $fetch; | 
					
						
							|  |  |  |     // prepared fetchTimestamp() statement
 | 
					
						
							|  |  |  |     protected $mtime; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     public function __construct() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2013-07-15 18:18:28 +00:00
										 |  |  |             $this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty"); | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         catch (PDOException $e) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             throw new SmartyException('Mysql Resource failed: ' . $e->getMessage()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->fetch = $this->db->prepare('SELECT modified, source FROM templates WHERE name = :name'); | 
					
						
							|  |  |  |         $this->mtime = $this->db->prepare('SELECT modified FROM templates WHERE name = :name'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Fetch a template and its modification time from database | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  string  $name   template name | 
					
						
							|  |  |  |      * @param  string  $source template source | 
					
						
							|  |  |  |      * @param  integer $mtime  template modification timestamp (epoch) | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function fetch($name, &$source, &$mtime) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->fetch->execute(array('name' => $name)); | 
					
						
							|  |  |  |         $row = $this->fetch->fetch(); | 
					
						
							|  |  |  |         $this->fetch->closeCursor(); | 
					
						
							|  |  |  |         if ($row) { | 
					
						
							|  |  |  |             $source = $row['source']; | 
					
						
							|  |  |  |             $mtime = strtotime($row['modified']); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $source = null; | 
					
						
							|  |  |  |             $mtime = null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Fetch a template's modification time from database | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @note implementing this method is optional. Only implement it if modification times can be accessed faster than loading the comple template source. | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param  string $name template name | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * @return integer timestamp (epoch) the template was modified | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     protected function fetchTimestamp($name) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $this->mtime->execute(array('name' => $name)); | 
					
						
							|  |  |  |         $mtime = $this->mtime->fetchColumn(); | 
					
						
							|  |  |  |         $this->mtime->closeCursor(); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return strtotime($mtime); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |