New import and export, v0.1

git-svn-id: https://develop.svn.wordpress.org/trunk@3769 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2006-05-10 20:34:17 +00:00
parent e0d1ccd210
commit a3d0bb059d
6 changed files with 435 additions and 12 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
<?php
require_once ('admin.php');
$title = __('Import');
$parent_file = 'import.php';
$parent_file = 'edit.php';
require_once ('admin-header.php');
?>
@@ -30,7 +30,7 @@ if (empty ($importers)) {
echo '<p>'.__('No importers are available.').'</p>'; // TODO: make more helpful
} else {
?>
<table width="100%" cellpadding="3" cellspacing="3">
<table class="widefat">
<?php
$style = '';
@@ -42,8 +42,8 @@ if (empty ($importers)) {
$style = 'class="'.$style.'"';
echo "
<tr $style>
<td class=\"togl\">$action</td>
<td class=\"desc\">{$data[1]}</td>
<td class='import-system'>$action</td>
<td class='desc'>{$data[1]}</td>
</tr>";
}
?>