PluginProbe ʕ •ᴥ•ʔ
Transferito: WP Migration / trunk
Transferito: WP Migration vtrunk
trunk 11.4.0 12.0.0 13.1.0 14.0.0 14.0.11 14.0.7 14.1.0 14.1.1 14.1.2 14.1.3 14.1.4
transferito / src / Views / parts / migration / completed.php
transferito / src / Views / parts / migration Last commit date
cpanel 10 months ago manual 9 months ago progress 9 months ago completed.php 10 months ago connect-to-server.php 10 months ago cpanel-check.php 10 months ago failure.php 10 months ago local-migration-completed.php 10 months ago navigation.php 9 months ago pro-tip.php 10 months ago select-migration-method.php 10 months ago upload-progress.php 10 months ago
completed.php
21 lines
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2 <?php
3 $data = [
4 'title' => 'Migration Completed',
5 'image' => 'completed-migration',
6 'type' => 'success',
7 'externalLink' => [
8 'anchorText' => 'View Migrated Site',
9 'linkURL' => $data['url']
10 ],
11 'message' => "We're happy to let you know that your migration to <a target='_blank' href=" . $data['url'] . ">" . $data['url'] . "</a> has completed",
12 'additionalInfo' => 'You may need to clear your cache to view your migrated site properly.',
13 'extraInfo' => [
14 'title' => 'Liked Using our Plugin?',
15 'content' => 'If you did, please <a target="_blank" class="transferito-log-event" data-event-name="leaveReview" href="https://wordpress.org/support/plugin/transferito/reviews/">click here</a> to leave us a review. Your feedback is very important to us & helps us to continually improve our plugin.'
16 ]
17 ];
18 include getTransferitoViewPath('parts/notice');
19 ?>
20
21