Added dependency plugins

This commit is contained in:
Moris Zen
2018-06-25 00:00:37 +02:00
parent 720a1c31a4
commit f069f6782f
698 changed files with 289637 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<div class="migrate-tab content-tab">
<p class="saved-migration-profile-label"><?php _e( 'Would you like to use a saved migration profile?', 'wp-migrate-db' ); ?></p>
<ul class="migration-profile-options">
<?php
foreach ( $this->settings['profiles'] as $key => $profile ) {
++ $key
?>
<li>
<a href="<?php echo $this->plugin_base . '&wpmdb-profile=' . $key; ?>"><?php printf( '%s - %s', $key, esc_html( $profile['name'] ) ); ?></a>
<span class="main-list-delete-profile-link" data-profile-id="<?php echo $key; ?>">&times;</span>
</li>
<?php } ?>
<li>
<a href="<?php echo $this->plugin_base . '&wpmdb-profile=-1'; ?>"><?php _e( 'Nope, let\'s start fresh...', 'wp-migrate-db' ); ?></a>
</li>
</ul>
</div>