]> git.mxchange.org Git - friendica.git/blob - library/Smarty/demo/plugins/resource.mysqls.php
Merge remote branch 'upstream/master'
[friendica.git] / library / Smarty / demo / plugins / resource.mysqls.php
1 <?php
2
3 /**
4  * MySQL Resource
5  *
6  * Resource Implementation based on the Custom API to use
7  * MySQL as the storage resource for Smarty's templates and configs.
8  *
9  * Note that this MySQL implementation fetches the source and timestamps in
10  * a single database query, instead of two seperate like resource.mysql.php does.
11  *
12  * Table definition:
13  * <pre>CREATE TABLE IF NOT EXISTS `templates` (
14  *   `name` varchar(100) NOT NULL,
15  *   `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
16  *   `source` text,
17  *   PRIMARY KEY (`name`)
18  * ) ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre>
19  *
20  * Demo data:
21  * <pre>INSERT INTO `templates` (`name`, `modified`, `source`) VALUES ('test.tpl', "2010-12-25 22:00:00", '{$x="hello world"}{$x}');</pre>
22  *
23  * @package Resource-examples
24  * @author Rodney Rehm
25  */
26 class Smarty_Resource_Mysqls extends Smarty_Resource_Custom {
27     // PDO instance
28     protected $db;
29     // prepared fetch() statement
30     protected $fetch;
31
32     public function __construct() {
33         try {
34             $this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty", "smarty");
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      * @return void
48      */
49     protected function fetch($name, &$source, &$mtime)
50     {
51         $this->fetch->execute(array('name' => $name));
52         $row = $this->fetch->fetch();
53         $this->fetch->closeCursor();
54         if ($row) {
55             $source = $row['source'];
56             $mtime = strtotime($row['modified']);
57         } else {
58             $source = null;
59             $mtime = null;
60         }
61     }
62 }