PluginProbe
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot / 4.9.0
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot v4.9.0
4.9.1 4.9.0 4.8.2 4.8.1 4.8.0 4.7.0 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 4.5.1 4.5.0 4.4.1 4.4.0 3.3.4 3.4.0 3.4.1 3.4.2 3.5.0 3.5.1 3.5.2 All 199 releases
betterdocs / views / admin / setup-wizard / welcome.php

welcome.php in BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot 4.9.0, at views/admin/setup-wizard/welcome.php

29 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <tr>
2 <td>
3 <h2 id="<?php
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7 print( isset( $args['id'] ) ? esc_html( $args['id'] ) : '' ); ?>"><?php print( isset( $args['title'] ) ? esc_html( $args['title'] ) : '' ); ?></h2>
8 <p class="welcome-sub-title"><?php print( isset( $args['sub_title'] ) ? esc_html( $args['sub_title'] ) : '' ); ?></p>
9 <?php
10 if ( isset( $args['video_url'] ) ) :
11 ?>
12 <div class="wpscp-getting-started-video">
13 <iframe width="620" height="350" src="<?php print( isset( $args['video_url'] ) ? esc_url( $args['video_url'] ) : '' ); ?>" frameborder="0"></iframe>
14 </div>
15 <?php
16 endif;
17 /** @var object $current_user; */
18 ?>
19 </td>
20 </tr>
21 <tr>
22 <td>
23 <div class="betterdocs_getting_started_form text-center">
24 <input type="checkbox" id="betterdocs_user_email_address" name="betterdocs_user_email_address" value="<?php print esc_html( $current_user->user_email ); ?>">
25 <?php esc_html_e( 'Share non-sensitive diagnostic data and plugin usage information.', 'betterdocs' ); ?>
26 </div>
27 </td>
28 </tr>
29