This commit is contained in:
parent
483cf72448
commit
780c0deb1b
@ -34,7 +34,9 @@ class Doctrine_Search
|
||||
{
|
||||
protected $_options = array('generateFiles' => false,
|
||||
'className' => '%CLASS%Index',
|
||||
'generatePath' => false);
|
||||
'generatePath' => false,
|
||||
'batchUpdates' => false,
|
||||
'pluginTable' => false);
|
||||
|
||||
|
||||
public function __construct(array $options)
|
||||
@ -79,6 +81,9 @@ class Doctrine_Search
|
||||
$class = $this->getOption('className');
|
||||
$name = $record->getTable()->getComponentName();
|
||||
|
||||
if ($this->_options['batchUpdates'] === true) {
|
||||
$conn->insert(Doctrine::tableize($class), array('foreign_id' => $id));
|
||||
} else {
|
||||
foreach ($fields as $field) {
|
||||
$data = $record->get($field);
|
||||
|
||||
@ -96,6 +101,7 @@ class Doctrine_Search
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function processPendingTable($tableName, $indexTableName, array $fields, $id, $conn = null)
|
||||
{
|
||||
@ -209,6 +215,8 @@ class Doctrine_Search
|
||||
eval($def);
|
||||
}
|
||||
|
||||
$this->_options['pluginTable'] = $table->getConnection()->getTable($this->_options['className']);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user