. */ /** * Doctrine_Search * * @author Konsta Vesterinen * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @version $Revision$ * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 */ class Doctrine_Search { public function buildDefinition(Doctrine_Record $record) { $columns = array('keyword' => array('type' => 'string', 'length' => 200, 'notnull' => true), 'field' => array('type' => 'string', 'length' => 50, 'notnull' => true), 'position' => array('type' => 'integer', 'length' => 8)); $id = $record->getTable()->getIdentifier(); $name = $record->getTable()->getComponentName(); $options = array('className' => $name . 'Index'); $fk = array(); foreach ((array) $id as $column) { $def = $record->getTable()->getDefinitionOf($column); unset($def['autoincrement']); unset($def['sequence']); unset($def['primary']); $col = strtolower($name . '_' . $column); $fk[$col] = $def; } $local = (count($fk) > 1) ? array_keys($fk) : key($fk); $relations = array($name => array('local' => $local, 'foreign' => $id, 'onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE')); $columns += $fk; $builder = new Doctrine_Import_Builder(); $def = $builder->buildDefinition($options, $columns, $relations); print "
";
        print_r($def);
    }
}
/**
fields:
[keyword] [field] [foreign_id] [position]


fields:
[keyword] [field] [match]

example data:
'orm' 'content' '1:36|2:23'
*/