plugin ) && ARGUS_WPD_BASENAME === $item->plugin ) { return true; } return $update; } public static function ensure_in_list( $list ) { $list = is_array( $list ) ? $list : array(); if ( ! in_array( ARGUS_WPD_BASENAME, $list, true ) ) { $list[] = ARGUS_WPD_BASENAME; } return $list; } public static function lock_admin_toggle( $html, $plugin_file, $plugin_data ) { if ( ARGUS_WPD_BASENAME !== $plugin_file ) { return $html; } return '● ' . esc_html__( 'Automatic security updates: Enabled and protected', 'argus-wordpress-defence' ) . ''; } public static function status() { return array( 'label' => __( 'Enabled and Protected', 'argus-wordpress-defence' ), 'detail' => __( 'ARGUS Defence automatically installs important security, protection, stability, and compatibility updates to help keep your website protected. This setting is managed automatically and cannot be disabled from the plugin.', 'argus-wordpress-defence' ), ); } }