function countries_importer_page()
{
    include_once WP_CONTENT_DIR . '/plugins/countries/includes/xml-parser.php';
    $xml = new Countries_XML_Parser();
    ?>
<div class='wrap'>
<h2>Country Importer</h2>
<?php 
    $xml->SaveInitialCountries();
    ?>


</div>

<?php 
}
示例#2
0
    /**
     * Countries Import Page
     */
    function importer_page()
    {
        include_once plugin_dir_path(__FILE__) . 'includes/xml-parser.php';
        $xml = new Countries_XML_Parser();
        ?>
		<div class="wrap">
			<h2><?php 
        _e('Country Importer', 'countries');
        ?>
</h2>
			<?php 
        $xml->save_initial_countries();
        ?>
		</div>
		<?php 
    }