From 7a43ae409112f414a0ed96bd796e0ddbf2d80b14 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Thu, 1 Nov 2007 14:47:23 +0000 Subject: [PATCH] Initial entry of sluggable template. --- lib/Doctrine/Template/Sluggable.php | 70 +++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 lib/Doctrine/Template/Sluggable.php diff --git a/lib/Doctrine/Template/Sluggable.php b/lib/Doctrine/Template/Sluggable.php new file mode 100644 index 000000000..cbfd11685 --- /dev/null +++ b/lib/Doctrine/Template/Sluggable.php @@ -0,0 +1,70 @@ +. + */ + +/** + * Doctrine_Template_Sluggable + * + * Easily create a slug for each record based on a specified set of fields + * + * @package Doctrine + * @subpackage Template + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + * @author Konsta Vesterinen + */ +class Doctrine_Template_Sluggable extends Doctrine_Template +{ + /** + * Array of timestampable options + * + * @var string + */ + protected $_options = array('name' => 'slug', + 'type' => 'clob', + 'length' => null, + 'options' => array(), + 'columns' => array()); + + /** + * __construct + * + * @param string $array + * @return void + */ + public function __construct(array $options) + { + $this->_options = array_merge($options, $this->_options); + } + + /** + * setTableDefinition + * + * @return void + */ + public function setTableDefinition() + { + $this->hasColumn($this->_options['name'], $this->_options['type'], $this->_options['length'], $this->_options['options']); + + $this->addListener(new Doctrine_Template_Listener_Sluggable($this->_options)); + } +} \ No newline at end of file