]> git.mxchange.org Git - friendica.git/blob - vendor/smarty/smarty/demo/plugins/resource.mysqls.php
Add Smarty to Composer
[friendica.git] / vendor / smarty / smarty / demo / plugins / resource.mysqls.php
1 <?php
2
3 /**
4  * MySQL Resource
5  * Resource Implementation based on the Custom API to use
6  * MySQL as the storage resource for Smarty's templates and configs.
7  * Note that this MySQL implementation fetches the source and timestamps in
8  * a single database query, instead of two separate like resource.mysql.php does.
9  * Table definition:
10  * <pre>CREATE TABLE IF NOT EXISTS `templates` (
11  *   `name` varchar(100) NOT NULL,
12  *   `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
13  *   `source` text,
14  *   PRIMARY KEY (`name`)
15  * ) ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre>
16  * Demo data:
17  * <pre>INSERT INTO `templates` (`name`, `modified`, `source`) VALUES ('test.tpl', "2010-12-25 22:00:00", '{$x="hello world"}{$x}');</pre>
18  *
19  * @package Resource-examples
20  * @author  Rodney Rehm
21  */
22 class Smarty_Resource_Mysqls extends Smarty_Resource_Custom
23 {
24     // PDO instance
25     protected $db;
26
27     // prepared fetch() statement
28     protected $fetch;
29
30     public function __construct()
31     {
32         try {
33             $this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty");
34         }
35         catch (PDOException $e) {
36             throw new SmartyException('Mysql Resource failed: ' . $e->getMessage());
37         }
38         $this->fetch = $this->db->prepare('SELECT modified, source FROM templates WHERE name = :name');
39     }
40
41     /**
42      * Fetch a template and its modification time from database
43      *
44      * @param  string  $name   template name
45      * @param  string  $source template source
46      * @param  integer $mtime  template modification timestamp (epoch)
47      *
48      * @return void
49      */
50     protected function fetch($name, &$source, &$mtime)
51     {
52         $this->fetch->execute(array('name' => $name));
53         $row = $this->fetch->fetch();
54         $this->fetch->closeCursor();
55         if ($row) {
56             $source = $row[ 'source' ];
57             $mtime = strtotime($row[ 'modified' ]);
58         } else {
59             $source = null;
60             $mtime = null;
61         }
62     }
63 }