Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > wpforms-lite > > src > Admin
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
Addons | Directory | - | - | |
Base | Directory | - | - | |
Blocks | Directory | - | - | |
Builder | Directory | - | - | |
Dashboard | Directory | - | - | |
Education | Directory | - | - | |
Forms | Directory | - | - | |
Helpers | Directory | - | - | |
Notifications | Directory | - | - | |
Pages | Directory | - | - | |
Payments | Directory | - | - | |
Settings | Directory | - | - | |
Splash | Directory | - | - | |
Tools | Directory | - | - | |
Traits | Directory | - | - | |
AdminBarMenu.php | File | 18364 bytes | June 17 2025 13:49:02. | |
Challenge.php | File | 17810 bytes | July 31 2025 14:13:36. | |
FlyoutMenu.php | File | 3591 bytes | September 26 2024 15:36:36. | |
FormEmbedWizard.php | File | 11775 bytes | April 24 2025 14:53:30. | |
Loader.php | File | 1692 bytes | August 10 2023 15:19:36. | |
Notice.php | File | 10082 bytes | September 26 2024 15:36:36. | |
Revisions.php | File | 12117 bytes | April 24 2025 14:53:30. | |
SiteHealth.php | File | 2837 bytes | July 31 2025 14:13:36. |
<?php namespace WPForms\Admin; /** * Site Health WPForms Info. * * @since 1.5.5 */ class SiteHealth { /** * Init Site Health. * * @since 1.5.5 */ final public function init() { $this->hooks(); } /** * Integration hooks. * * @since 1.5.5 */ protected function hooks() { add_filter( 'debug_information', [ $this, 'add_info_section' ] ); } /** * Add WPForms section to Info tab. * * @since 1.5.5 * * @param array $debug_info Array of all information. * * @return array Array with added WPForms info section. */ public function add_info_section( $debug_info ) { $wpforms = [ 'label' => 'WPForms', 'fields' => [ 'version' => [ 'label' => esc_html__( 'Version', 'wpforms-lite' ), 'value' => WPFORMS_VERSION, ], ], ]; // Install date. $activated = get_option( 'wpforms_activated', [] ); if ( ! empty( $activated['lite'] ) ) { $wpforms['fields']['lite'] = [ 'label' => esc_html__( 'Lite install date', 'wpforms-lite' ), 'value' => wpforms_datetime_format( $activated['lite'], '', true ), ]; } if ( ! empty( $activated['pro'] ) ) { $wpforms['fields']['pro'] = [ 'label' => esc_html__( 'Pro install date', 'wpforms-lite' ), 'value' => wpforms_datetime_format( $activated['pro'], '', true ), ]; } // Permissions for the upload directory. $upload_dir = wpforms_upload_dir(); $wpforms['fields']['upload_dir'] = [ 'label' => esc_html__( 'Uploads directory', 'wpforms-lite' ), 'value' => empty( $upload_dir['error'] ) && ! empty( $upload_dir['path'] ) && wp_is_writable( $upload_dir['path'] ) ? esc_html__( 'Writable', 'wpforms-lite' ) : esc_html__( 'Not writable', 'wpforms-lite' ), ]; // DB tables. $db_tables = wpforms()->get_existing_custom_tables(); if ( $db_tables ) { $db_tables_str = empty( $db_tables ) ? esc_html__( 'Not found', 'wpforms-lite' ) : implode( ', ', $db_tables ); $wpforms['fields']['db_tables'] = [ 'label' => esc_html__( 'DB tables', 'wpforms-lite' ), 'value' => $db_tables_str, 'private' => true, ]; } // Total forms. $wpforms['fields']['total_forms'] = [ 'label' => esc_html__( 'Total forms', 'wpforms-lite' ), 'value' => wp_count_posts( 'wpforms' )->publish, ]; if ( ! wpforms()->is_pro() ) { $forms = wpforms()->obj( 'form' )->get( '', [ 'fields' => 'ids' ] ); if ( empty( $forms ) || ! is_array( $forms ) ) { $forms = []; } $count = 0; foreach ( $forms as $form_id ) { $count += (int) get_post_meta( $form_id, 'wpforms_entries_count', true ); } $wpforms['fields']['total_submissions'] = [ 'label' => esc_html__( 'Total submissions (since v1.5.0)', 'wpforms-lite' ), 'value' => $count, ]; } $debug_info['wpforms'] = $wpforms; return $debug_info; } }
SILENT KILLER Tool