芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/elementor/modules/components/components-parser.php
errors()->add( 'name', 'component_name_too_short_min_' . self::MIN_NAME_LENGTH ); } if ( strlen( $sanitized ) > self::MAX_NAME_LENGTH ) { $result->errors()->add( 'name', 'component_name_too_long_max_' . self::MAX_NAME_LENGTH ); } if ( in_array( $sanitized, $existing_components_names, true ) ) { $result->errors()->add( 'name', 'duplicated_component_name' ); } return $result->wrap( $sanitized ); } }