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 @@
<?php
if ( count( $this->settings['profiles'] ) > 0 ) :
$profile_name = $is_default_profile ? _x( 'New Profile', 'Default profile loaded', 'wp-migrate-db' ) : $loaded_profile['name'];
?>
<div class="crumbs">
<a class="crumb" href="<?php echo $this->plugin_base; ?>" class="return-to-profile-selection clearfix">
<?php _e( 'Saved Profiles', 'wp-migrate-db' ); ?>
</a>
<span class="crumb"><?php echo esc_html( $profile_name ); ?></span>
</div>
<?php
endif;