PluginProbe
SweepPress: Website Cleanup and Optimization / 1.2
SweepPress: Website Cleanup and Optimization v1.2
trunk 1.1 1.2 1.3 1.4 1.4.1 1.5 1.6 1.7 1.8 2.0 2.1 2.1.1 2.2 2.3 2.3.1 2.4 2.4.1 2.4.2 2.5 2.6 3.0 3.1 3.1.1 3.2 All 39 releases
sweeppress / forms / content-install.php

content-install.php in SweepPress: Website Cleanup and Optimization 1.2, at forms/content-install.php

28 lines 801 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 use function Dev4Press\v37\Functions\panel;
4
5 ?>
6 <div class="d4p-content d4p-setup-wrapper">
7 <div class="d4p-update-info">
8 <?php
9
10 sweeppress_settings()->set( 'install', false, 'info' );
11 sweeppress_settings()->set( 'update', false, 'info', true );
12
13 ?>
14
15 <div class="d4p-install-block">
16 <h4>
17 <?php esc_html_e( "All Done", "sweeppress" ); ?>
18 </h4>
19 <div>
20 <?php esc_html_e( "Installation completed.", "sweeppress" ); ?>
21 </div>
22 </div>
23
24 <div class="d4p-install-confirm">
25 <a class="button-primary" href="<?php echo esc_url( panel()->a()->panel_url( 'about' ) ); ?>&install"><?php esc_html_e( "Click here to continue", "sweeppress" ); ?></a>
26 </div>
27 </div>
28 </div>