| | |
| | | <?php |
| | | |
| | | /** |
| | | /* |
| | | +-----------------------------------------------------------------------+ |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2012, The Roundcube Dev Team | |
| | |
| | | */ |
| | | public function table_name($table, $quoted = false) |
| | | { |
| | | // let plugins alter the table name (#1489837) |
| | | $plugin = rcube::get_instance()->plugins->exec_hook('db_table_name', array('table' => $table)); |
| | | $table = $plugin['table']; |
| | | |
| | | // add prefix to the table name if configured |
| | | if (($prefix = $this->options['table_prefix']) && strpos($table, $prefix) !== 0) { |
| | | $table = $prefix . $table; |