File manager - Edit - /home/vblioqus/unfreezetiktok.com/wp-content/plugins/webp-converter-for-media/src/Settings/Option/ImagesQualityOption.php
Back
<?php namespace WebpConverter\Settings\Option; /** * {@inheritdoc} */ class ImagesQualityOption extends OptionAbstract { const OPTION_NAME = 'quality'; /** * {@inheritdoc} */ public function get_name(): string { return self::OPTION_NAME; } /** * {@inheritdoc} */ public function get_form_name(): string { return OptionAbstract::FORM_TYPE_GENERAL; } /** * {@inheritdoc} */ public function get_type(): string { return OptionAbstract::OPTION_TYPE_QUALITY; } /** * {@inheritdoc} */ public static function get_label(): string { return __( 'Conversion strategy', 'webp-converter-for-media' ); } /** * {@inheritdoc} */ public function get_info(): string { return implode( '', [ sprintf( /* translators: %s: level name */ __( 'The "%s" value is the most optimal choice for most websites.', 'webp-converter-for-media' ), __( 'Optimal', 'webp-converter-for-media' ) ), sprintf( ' <span class="dashicons dashicons-info-outline" title="%s"></span>', esc_attr( sprintf( /* translators: %1$s: button label, %2$s: option label */ __( 'After saving the change to this setting, remember to click the "%1$s" button with the "%2$s" option checked if you want to apply the change to already converted images.', 'webp-converter-for-media' ), __( 'Start Bulk Optimization', 'webp-converter-for-media' ), __( 'Force the conversion of all images again', 'webp-converter-for-media' ) ) ) ), ] ); } /** * {@inheritdoc} * * @return string[] */ public function get_available_values( array $settings ): array { $levels = apply_filters( 'webpc_option_quality_levels', [ 75, 80, 85, 90, 95 ] ); $levels = [ intval( $levels[0] ?? 75 ), intval( $levels[1] ?? 80 ), intval( $levels[2] ?? 85 ), intval( $levels[3] ?? 90 ), intval( $levels[4] ?? 95 ), ]; $values = []; foreach ( $levels as $level ) { if ( ( $level > 0 ) && ( $level <= 100 ) ) { $values[ $level ] = sprintf( '%s%%', $level ); } } ksort( $values ); return $values; } /** * {@inheritdoc} */ public function get_default_value(): string { return '85'; } /** * {@inheritdoc} */ public function validate_value( $current_value, ?array $available_values = null, ?array $disabled_values = null ) { if ( $current_value === '100' ) { return '95'; } elseif ( ! array_key_exists( $current_value, $available_values ?: [] ) || in_array( $current_value, $disabled_values ?: [] ) ) { return $this->get_default_value(); } return $current_value; } /** * {@inheritdoc} */ public function sanitize_value( $current_value ): string { $values = apply_filters( 'webpc_option_quality_levels', [ 75, 80, 85, 90, 95 ] ); return $this->validate_value( $current_value, array_combine( $values, $values ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings