]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/import/stp.php
Wordpress 2.7.1-scripts
[autoinstalls/wordpress.git] / wp-admin / import / stp.php
index 53b339a0b7e14a4149d0dc1967094628fb729eab..54c501f817624ea7123a82f47a3ace3f0edd923e 100644 (file)
@@ -1,7 +1,22 @@
 <?php
+/**
+ * Simple Tags Plugin Importer
+ *
+ * @package WordPress
+ * @subpackage Importer
+ */
+
+/**
+ * Simple Tags Plugin Tags converter class.
+ *
+ * Will convert Simple Tags Plugin tags over to the WordPress 2.3 taxonomy.
+ *
+ * @since unknown
+ */
 class STP_Import {
        function header()  {
                echo '<div class="wrap">';
+               screen_icon();
                echo '<h2>'.__('Import Simple Tagging').'</h2>';
                echo '<p>'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'<br /><br /></p>';
        }
@@ -18,7 +33,7 @@ class STP_Import {
                echo '<p><strong>'.__('Don&#8217;t be stupid - backup your database before proceeding!').'</strong></p>';
                echo '<form action="admin.php?import=stp&amp;step=1" method="post">';
                wp_nonce_field('import-stp');
-               echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>';
+               echo '<p class="submit"><input type="submit" name="submit" class="button" value="'.__('Step 1').'" /></p>';
                echo '</form>';
                echo '</div>';
        }
@@ -78,7 +93,7 @@ class STP_Import {
 
                echo '<form action="admin.php?import=stp&amp;step=2" method="post">';
                wp_nonce_field('import-stp');
-               echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>';
+               echo '<p class="submit"><input type="submit" name="submit" class="button" value="'.__('Step 2').'" /></p>';
                echo '</form>';
                echo '</div>';
        }
@@ -94,7 +109,7 @@ class STP_Import {
                echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tag was added!', 'Done! <strong>%s</strong> tags were added!', $tags_added), $tags_added ) . '<br /></p>';
                echo '<form action="admin.php?import=stp&amp;step=3" method="post">';
                wp_nonce_field('import-stp');
-               echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>';
+               echo '<p class="submit"><input type="submit" name="submit" class="button" value="'.__('Step 3').'" /></p>';
                echo '</form>';
                echo '</div>';
        }