PluginProbe
Parse.ly / 3.6.0
Parse.ly v3.6.0
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / views / parsely-settings.php

parsely-settings.php in Parse.ly 3.6.0, at views/parsely-settings.php

38 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Views: Plugin settings view
4 *
5 * Shows the settings page.
6 *
7 * @package Parsely
8 */
9
10 declare(strict_types=1);
11
12 namespace Parsely;
13
14 /* translators: %s: Plugin version */
15 $parsely_version_string = sprintf( __( 'Version %s', 'wp-parsely' ), Parsely::VERSION );
16 ?>
17 <div class="wrap">
18 <h1 class="wp-heading-inline"><?php echo esc_html( get_admin_page_title() ); ?></h1>
19 <span id="wp-parsely_version"><?php echo esc_html( $parsely_version_string ); ?></span>
20 <p><em><?php esc_html_e( 'More settings can be enabled via Screen Options (button on the top of the page).', 'wp-parsely' ); ?></em></p>
21 <?php
22 if ( is_multisite() && is_main_site() ) {
23 ?>
24 <div class="notice notice-info">
25 <p><?php esc_html_e( 'Attention: this is the main site of your Multisite Network.', 'wp-parsely' ); ?></p>
26 </div>
27 <?php
28 }
29 ?>
30 <form name="parsely" method="post" action="options.php" novalidate>
31 <?php
32 settings_fields( Parsely::OPTIONS_KEY );
33 do_settings_sections( Parsely::OPTIONS_KEY );
34 submit_button();
35 ?>
36 </form>
37 </div>
38