Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
beaver-builder-lite-version
/
classes
/
Editing: class-fl-builder-filesystem.php
<?php /** * Filesystem Class. * @since 2.0.6 */ class FL_Filesystem { protected static $_instance = null; public static function instance() { if ( is_null( self::$_instance ) ) { /** * Make Filesystem Instance filterable. * @see fl_filesystem_instance */ $filtered = apply_filters( 'fl_filesystem_instance', null ); self::$_instance = $filtered instanceof FL_Filesystem ? $filtered : new self(); } return self::$_instance; } /** * file_get_contents using wp_filesystem. * @since 2.0.6 */ public function file_get_contents( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->get_contents( $path ); } /** * is_writable using wp_filesystem. * @since 2.1.2 */ public function is_writable( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->is_writable( $path ); } /** * file_put_contents using wp_filesystem. * @since 2.0.6 */ public function file_put_contents( $path, $contents ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->put_contents( $path, $contents, FS_CHMOD_FILE ); } /** * mkdir using wp_filesystem. * @since 2.0.6 */ public function mkdir( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->mkdir( $path ); } /** * is_dir using wp_filesystem. * @since 2.0.6 */ public function is_dir( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->is_dir( $path ); } /** * dirlist using wp_filesystem. * @since 2.0.6 */ public function dirlist( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->dirlist( $path ); } /** * move using wp_filesystem. * @since 2.0.6 */ public function move( $old_path, $new_path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->move( $old_path, $new_path ); } /** * rmdir using wp_filesystem. * @since 2.0.6 */ public function rmdir( $path, $recursive = false ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->rmdir( $path, $recursive ); } /** * unlink using wp_filesystem. * @since 2.0.6 */ public function unlink( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->delete( $path ); } /** * unlink using wp_filesystem. * @since 2.0.6 */ public function file_exists( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->exists( $path ); } /** * filesize using wp_filesystem. * @since 2.0.6 */ public function filesize( $path ) { $wp_filesystem = $this->get_filesystem(); return $wp_filesystem->size( $path ); } /** * Return an instance of WP_Filesystem. * @since 2.0.6 */ public function get_filesystem() { global $wp_filesystem; if ( ! $wp_filesystem || 'direct' != $wp_filesystem->method ) { require_once ABSPATH . '/wp-admin/includes/file.php'; /** * Context for filesystem, default false. * @see request_filesystem_credentials_context */ $context = apply_filters( 'request_filesystem_credentials_context', false ); add_filter( 'filesystem_method', array( $this, 'filesystem_method' ) ); add_filter( 'request_filesystem_credentials', array( $this, 'request_filesystem_credentials' ) ); $creds = request_filesystem_credentials( site_url(), '', true, $context, null ); WP_Filesystem( $creds, $context ); remove_filter( 'filesystem_method', array( $this, 'filesystem_method' ) ); remove_filter( 'request_filesystem_credentials', array( $this, 'FLBuilderUtils::request_filesystem_credentials' ) ); } // Set the permission constants if not already set. if ( ! defined( 'FS_CHMOD_DIR' ) ) { define( 'FS_CHMOD_DIR', 0755 ); } if ( ! defined( 'FS_CHMOD_FILE' ) ) { define( 'FS_CHMOD_FILE', 0644 ); } return $wp_filesystem; } /** * Sets method to direct. * @since 2.0.6 */ public function filesystem_method() { return 'direct'; } /** * Sets credentials to true. * @since 2.0.6 */ public function request_filesystem_credentials() { return true; } } /** * Setup singleton. * @since 2.0.6 */ function fl_builder_filesystem() { return FL_Filesystem::instance(); }
Save
Cancel