Files
SIGE-WEB-snapshot/wp-content/plugins/import-users-from-csv-with-meta/classes/new_features.php

28 lines
1.4 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) exit;
class ACUI_NewFeatures{
public static function message(){
?>
<div class="postbox">
<h3 class="hndle"><span>&nbsp;<?php _e( 'New features', 'import-users-from-csv-with-meta' ); ?></span></h3>
<div class="inside" style="display: block;">
<p><?php _e( 'This is a list of new features that we want to include, but we have not been able to do so yet. We run a business and do not have as much time to devote to this plugin as we would like. If you need some new feature not included in this list, please write to us at:', 'import-users-from-csv-with-meta' ); ?></p>
<ul style="list-style: disc; padding-left: 15px;">
<li>Change required document format</li>
<li>Make a wizard to help importing</li>
<li>Include a new step, to a simulation about how it would be the import before doing it</li>
<li>Make a website to give a better documentation and tutorials about it</li>
<li>Create an online service to be able to provide personal support to some imports</li>
<li>Include a button to export the current user data database in CSV format</li>
<li>Make this plugin compatible with WP-CLI including some command</li>
<li>Include more CSV examples</li>
</ul>
<div style="clear:both;"></div>
</div>
</div>
<?php
}
}