┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ 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_Boolean.php
<?php /** * @package Polylang */ namespace WP_Syntex\Polylang\Options\Primitive; use WP_Syntex\Polylang\Options\Abstract_Option; defined( 'ABSPATH' ) || exit; /** * Class defining single boolean option. * Note that for historic reason, boolean are stored as 0 or 1. * * @since 3.7 */ abstract class Abstract_Boolean extends Abstract_Option { /** * Returns the default value. * * @since 3.7 * * @return bool */ protected function get_default() { return false; } /** * Returns the JSON schema part specific to this option. * * @since 3.7 * * @return array Partial schema. * * @phpstan-return array{type: 'boolean'} */ protected function get_data_structure(): array { return array( 'type' => 'boolean', ); } }
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