2007-06-27 17:45:05 +00:00
|
|
|
<?php
|
|
|
|
class Blog extends Doctrine_Record
|
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-06-27 17:45:05 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->loadTemplate('Taggable');
|
2007-06-27 17:45:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
class Taggable extends Doctrine_Template
|
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-06-27 17:45:05 +00:00
|
|
|
{
|
2007-09-20 22:02:45 +00:00
|
|
|
//$this->hasMany('[Component]TagTemplate as Tag');
|
2007-06-27 17:45:05 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-20 20:31:49 +00:00
|
|
|
class TagTemplate extends Doctrine_Record
|
2007-06-27 17:45:05 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-06-27 17:45:05 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('name', 'string', 100);
|
|
|
|
$class->setColumn('description', 'string');
|
2007-06-27 17:45:05 +00:00
|
|
|
}
|
|
|
|
}
|