File manager - Edit - /home/vblioqus/unfreezetiktok.com/wp-content/plugins/webp-converter-for-media/src/Settings/Option/OptionInterface.php
Back
<?php namespace WebpConverter\Settings\Option; /** * Interface for class that supports data field in plugin settings. */ interface OptionInterface { /** * Returns name of option. * * @return string */ public function get_name(): string; /** * @return string */ public function get_form_name(): string; /** * Returns type of field. * * @return string */ public function get_type(): string; /** * Returns label of option. * * @return string|null */ public static function get_label(): ?string; /** * @return string[]|null */ public function get_notice_lines(): ?array; /** * Returns additional information of field. * * @return string|null */ public function get_info(): ?string; /** * @return string|null */ public function get_placeholder(): ?string; /** * @param mixed[] $settings Plugin settings. * * @return string[]|null */ public function get_available_values( array $settings ): ?array; /** * @param mixed[] $settings Plugin settings. * * @return string[]|null */ public function get_values_warnings( array $settings ): ?array; /** * @param mixed[] $settings Plugin settings. * * @return string[]|null */ public function get_disabled_values( array $settings ): ?array; /** * Returns default value of field. * * @return string|string[] */ public function get_default_value(); /** * Returns verified value of field. * * @param mixed|null $current_value . * @param string[]|null $available_values . * @param string[]|null $disabled_values . * * @return mixed|null */ public function validate_value( $current_value, ?array $available_values = null, ?array $disabled_values = null ); /** * Returns sanitized value of field. * * @param mixed|null $current_value . * * @return mixed|null */ public function sanitize_value( $current_value ); /** * Returns value of field without sensitive data. * * @param mixed|null $current_value . * * @return mixed|null */ public function get_public_value( $current_value = null ); /** * Returns default value of field when debugging. * * @param mixed[] $settings Plugin settings. * * @return string|string[] */ public function get_debug_value( array $settings ); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings