hook for defining new read-write tables

This commit is contained in:
Evan Prodromou 2011-05-06 17:18:38 -07:00
parent e863903263
commit 55068030d2
2 changed files with 24 additions and 6 deletions

View File

@ -1391,3 +1391,12 @@ EndDocFileForTitle: After searching for a doc or mail template
- $title: Title we looked for
- $paths: Paths we searched
- &$filename: Filename so far (set this if you want)
StartReadWriteTables: when noting which tables must be read-write, even on read-only actions
- &$tables: list of table names
- &$rwdb: read-write database URI
EndReadWriteTables: after noting which tables must be read-write, even on read-only actions
- $tables: list of table names
- $rwdb: read-write database URI

View File

@ -175,15 +175,24 @@ function setupRW()
static $alwaysRW = array('session', 'remember_me');
// We ensure that these tables always are used
// on the master DB
$rwdb = $config['db']['database'];
$config['db']['database_rw'] = $config['db']['database'];
$config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
if (Event::handle('StartReadWriteTables', array(&$alwaysRW, &$rwdb))) {
foreach ($alwaysRW as $table) {
$config['db']['table_'.$table] = 'rw';
// We ensure that these tables always are used
// on the master DB
$config['db']['database_rw'] = $rwdb;
$config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
foreach ($alwaysRW as $table) {
$config['db']['table_'.$table] = 'rw';
}
Event::handle('EndReadWriteTables', array($alwaysRW, $rwdb));
}
return;
}
function checkMirror($action_obj, $args)