* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ namespace phpbb\db\extractor; /** * Database extractor interface */ interface extractor_interface { /** * Start the extraction of the database * * This function initialize the database extraction. It is required to call this * function before calling any other extractor functions. * * @param string $format * @param string $filename * @param int $time * @param bool $download * @param bool $store * @return null * @throws \phpbb\db\extractor\exception\invalid_format_exception when $format is invalid */ public function init_extractor($format, $filename, $time, $download = false, $store = false); /** * Writes header comments to the database backup * * @param string $table_prefix prefix of phpBB database tables * @return null * @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor() */ public function write_start($table_prefix); /** * Closes file and/or dumps download data * * @return null * @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor() */ public function write_end(); /** * Extracts database table structure * * @param string $table_name name of the database table * @return null * @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor() */ public function write_table($table_name); /** * Extracts data from database table * * @param string $table_name name of the database table * @return null * @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor() */ public function write_data($table_name); /** * Writes data to file/download content * * @param string $data * @return null * @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor() */ public function flush($data); } pic/MDK-2006_0-update Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/security/l10n.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-03-02 15:27:26 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-03-02 15:27:26 +0000
commitabe444f7b2a55d8ff146fe49f6967d45dfe243c6 (patch)
tree4a3925ae07cb09e35ed41ea8457d698e963a3610 /perl-install/security/l10n.pm
parentd011bfb4a676946a3c81618ec39257962e143c4e (diff)
downloaddrakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.tar
drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.tar.gz
drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.tar.bz2
drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.tar.xz
drakx-abe444f7b2a55d8ff146fe49f6967d45dfe243c6.zip
small fix when clicking on an empty tree (when allow_empty_list)