┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/stafilos/wp-content/plugins/polylang/src/Options/Primitive
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: Abstract_String.php
<?php /** * @package Polylang */ namespace WP_Syntex\Polylang\Options\Primitive; use WP_Syntex\Polylang\Options\Abstract_Option; use WP_Syntex\Polylang\Options\Options; defined( 'ABSPATH' ) || exit; /** * Class defining single string option. * * @since 3.7 */ abstract class Abstract_String extends Abstract_Option { /** * Returns the default value. * * @since 3.7 * * @return string */ protected function get_default() { return ''; } /** * Returns the JSON schema part specific to this option. * * @since 3.7 * * @return array Partial schema. * * @phpstan-return array{type: 'string'} */ protected function get_data_structure(): array { return array( 'type' => 'string', ); } /** * Adds information to the site health info array. * * @since 3.8 * * @param Options $options An instance of the Options class providing additional configuration. * * @return array The updated site health information. */ public function get_site_health_info( Options $options ): array { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable return $this->format_single_value_for_site_health_info( $this->get() ); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Abstract_Boolean.php
PHP
762 B
2026-04-28 11:54
EDIT
📄 Abstract_List.php
PHP
2.6 KB
2026-04-28 11:54
EDIT
📄 Abstract_Map.php
PHP
2.1 KB
2026-04-28 11:54
EDIT
📄 Abstract_String.php
PHP
1.2 KB
2026-04-28 11:54
EDIT