🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
mnt
/
web613
/
c2
/
38
/
570372438
/
htdocs
/
STRATO-apps
/
wordpress_02
/
app
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
elements
/
atomic-form
/
form-error-message
✏️
Editing: form-error-message.php
<?php namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Form\Form_Error_Message; use Elementor\Modules\AtomicWidgets\Elements\Atomic_Form\Form_Message\Form_Message; if ( ! defined( 'ABSPATH' ) ) { exit; } class Form_Error_Message extends Form_Message { public static $widget_description = 'Shown when the form submission fails. Hidden by default, displayed automatically when the form submission result is an error.'; public static function get_type() { return 'e-form-error-message'; } public static function get_element_type(): string { return 'e-form-error-message'; } public function get_title() { return esc_html__( 'Error message', 'elementor' ); } protected static function get_background_color(): string { return '#ffdede'; } protected static function get_text_color(): string { return '#870000'; } protected static function get_default_status_paragraph_text(): string { return __( 'We couldn’t process your submission. Please retry', 'elementor' ); } protected function get_css_id_control_meta(): array { return [ 'layout' => 'two-columns', 'topDivider' => false, ]; } }
💾 Save Changes
❌ Cancel