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