2007-07-20 23:17:58 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class SearchTest extends Doctrine_Entity
|
2007-07-20 23:17:58 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class)
|
2007-07-20 23:17:58 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('title', 'string', 100);
|
|
|
|
$class->setColumn('content', 'string');
|
|
|
|
$options = array('generateFiles' => false,
|
2007-07-20 23:17:58 +04:00
|
|
|
'fields' => array('title', 'content'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->actAs('Searchable', $options);
|
2007-07-20 23:17:58 +04:00
|
|
|
}
|
|
|
|
}
|