diff --git a/libraries/export/mediawiki.php b/libraries/export/mediawiki.php new file mode 100755 index 000000000..7f4d5daa6 --- /dev/null +++ b/libraries/export/mediawiki.php @@ -0,0 +1,174 @@ + 'MediaWiki', + 'extension' => 'txt', + 'mime_type' => 'text/plain', + 'options' => array( + array('type' => 'hidden', 'name' => 'data'), + ), + 'options_text' => 'strOptions', + ); +} else { + +/** + * Outputs comment + * + * @param string Text of comment + * + * @return bool Whether it suceeded + */ +function PMA_exportComment($text) { + return TRUE; +} + +/** + * Outputs export footer + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportFooter() { + return TRUE; +} + +/** + * Outputs export header + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportHeader() { + return TRUE; +} + +/** + * Outputs database header + * + * @param string Database name + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportDBHeader($db) { + return TRUE; +} + +/** + * Outputs database footer + * + * @param string Database name + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportDBFooter($db) { + return TRUE; +} + +/** + * Outputs create database database + * + * @param string Database name + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportDBCreate($db) { + return TRUE; +} + +/** + * Outputs the content of a table in MediaWiki format + * + * @param string the database name + * @param string the table name + * @param string the end of line sequence + * @param string the url to go back in case of error + * @param string SQL query for obtaining data + * + * @return bool Whether it suceeded + * + * @access public + */ +function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) { + global $mediawiki_export_struct; + global $mediawiki_export_data; + + $result = PMA_DBI_fetch_result("SHOW COLUMNS FROM `".$db."`.`".$table."`"); + $row_cnt = count($result); + + $output = "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n"; + $output .= "|+'''" . $table . "'''\n"; + $output .= "|- style=\"background:#ffdead;\"\n"; + $output .= "! style=\"background:#ffffff\" | \n"; + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $result[$i]['Field']; + if (($i + 1) != $row_cnt) { + $output .= "\n"; + } + } + $output .= "\n"; + + $output .= "|- style=\"background:#f9f9f9;\"\n"; + $output .= "! style=\"background:#f2f2f2\" | Type\n"; + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $result[$i]['Type']; + if (($i + 1) != $row_cnt) { + $output .= "\n"; + } + } + $output .= "\n"; + + $output .= "|- style=\"background:#f9f9f9;\"\n"; + $output .= "! style=\"background:#f2f2f2\" | Null\n"; + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $result[$i]['Null']; + if (($i + 1) != $row_cnt) { + $output .= "\n"; + } + } + $output .= "\n"; + + $output .= "|- style=\"background:#f9f9f9;\"\n"; + $output .= "! style=\"background:#f2f2f2\" | Default\n"; + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $result[$i]['Default']; + if (($i + 1) != $row_cnt) { + $output .= "\n"; + } + } + $output .= "\n"; + + $output .= "|- style=\"background:#f9f9f9;\"\n"; + $output .= "! style=\"background:#f2f2f2\" | Extra\n"; + for ($i = 0; $i < $row_cnt; ++$i) { + $output .= " | " . $result[$i]['Extra']; + if (($i + 1) != $row_cnt) { + $output .= "\n"; + } + } + $output .= "\n"; + + $output .= "|}\n\n\n\n"; + return PMA_exportOutputHandler($output); +} + +} +?>