diff options
| author | Lester Caine <none@none> | 2014-05-29 22:26:37 +0100 |
|---|---|---|
| committer | Lester Caine <none@none> | 2014-05-29 22:26:37 +0100 |
| commit | ae23ff9787a21969448305eed29bdc81809f4237 (patch) | |
| tree | d5e1fe0be9fc24731348158ad73f57d7a7881cb4 /smarty/demo/plugins/resource.mysqls.php | |
| parent | d876890e00631346b7bd88f9936b62c4eba03139 (diff) | |
| parent | 6a03f60f823bed11d637f7961cb9c2bad16df0d8 (diff) | |
| download | themes-ae23ff9787a21969448305eed29bdc81809f4237.tar.gz themes-ae23ff9787a21969448305eed29bdc81809f4237.tar.bz2 themes-ae23ff9787a21969448305eed29bdc81809f4237.zip | |
Sync with master
Diffstat (limited to 'smarty/demo/plugins/resource.mysqls.php')
| -rw-r--r-- | smarty/demo/plugins/resource.mysqls.php | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/smarty/demo/plugins/resource.mysqls.php b/smarty/demo/plugins/resource.mysqls.php deleted file mode 100644 index f9fe1c2..0000000 --- a/smarty/demo/plugins/resource.mysqls.php +++ /dev/null @@ -1,62 +0,0 @@ -<?php - -/** - * MySQL Resource - * - * Resource Implementation based on the Custom API to use - * MySQL as the storage resource for Smarty's templates and configs. - * - * Note that this MySQL implementation fetches the source and timestamps in - * a single database query, instead of two seperate like resource.mysql.php does. - * - * 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 - * @author Rodney Rehm - */ -class Smarty_Resource_Mysqls extends Smarty_Resource_Custom { - // PDO instance - protected $db; - // prepared fetch() statement - protected $fetch; - - public function __construct() { - try { - $this->db = new PDO("mysql:dbname=test;host=127.0.0.1", "smarty", "smarty"); - } catch (PDOException $e) { - throw new SmartyException('Mysql Resource failed: ' . $e->getMessage()); - } - $this->fetch = $this->db->prepare('SELECT modified, source FROM templates WHERE name = :name'); - } - - /** - * Fetch a template and its modification time from database - * - * @param string $name template name - * @param string $source template source - * @param integer $mtime template modification timestamp (epoch) - * @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; - } - } -} |
