Created
December 24, 2014 10:39
-
-
Save w3b-beweb/ee99712a63ab00026d10 to your computer and use it in GitHub Desktop.
fix for undefined constant FS_CHMOD_FILE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} | |
if ( ! class_exists( 'Redux_Filesystem' ) ) { | |
class Redux_Filesystem { | |
private $parent = null; | |
private $creds = array(); | |
public $fs_object = null; | |
public function __construct( $parent ) { | |
$parent->filesystem = $this; | |
$this->parent = $parent; | |
} | |
public function ftp_form() { | |
if ( isset( $this->parent->ftp_form ) && ! empty( $this->parent->ftp_form ) ) { | |
echo '<div class="wrap"><div class="error"><p>'; | |
echo __( 'Unable to modify required files. Please ensure that', 'redux-framework' ); | |
echo ' <code>' . Redux_Helpers::cleanFilePath( trailingslashit( WP_CONTENT_DIR ) ) . '/uploads/</code> '; | |
echo __( 'has the proper read/write permissions or enter your FTP information below.', 'redux-framework' ); | |
echo '</p></div><h2></h2>' . $this->parent->ftp_form . '</div>'; | |
} | |
} | |
function filesystem_init( $form_url, $method = '', $context = false, $fields = null ) { | |
global $wp_filesystem; | |
if ( ! empty( $this->creds ) ) { | |
return true; | |
} | |
ob_start(); | |
/* first attempt to get credentials */ | |
if ( false === ( $this->creds = request_filesystem_credentials( $form_url, $method, false, $context ) ) ) { | |
$this->creds = array(); | |
$this->parent->ftp_form = ob_get_contents(); | |
ob_end_clean(); | |
/** | |
* if we comes here - we don't have credentials | |
* so the request for them is displaying | |
* no need for further processing | |
**/ | |
return false; | |
} | |
/* now we got some credentials - try to use them*/ | |
if ( ! WP_Filesystem( $this->creds ) ) { | |
$this->creds = array(); | |
/* incorrect connection data - ask for credentials again, now with error message */ | |
request_filesystem_credentials( $form_url, '', true, $context ); | |
$this->parent->ftp_form = ob_get_contents(); | |
ob_end_clean(); | |
return false; | |
} | |
return true; | |
} | |
public function execute( $action, $file = '', $params = '' ) { | |
if ( ! empty ( $params ) ) { | |
extract( $params ); | |
} | |
// Setup the filesystem with creds | |
require_once( ABSPATH . '/wp-admin/includes/template.php' ); | |
require_once( ABSPATH . '/wp-admin/includes/file.php' ); | |
if ( $this->parent->args['menu_type'] == 'submenu' ) { | |
$page_parent = $this->parent->args['page_parent']; | |
$base = $page_parent . '?page=' . $this->parent->args['page_slug']; | |
} else { | |
$base = 'admin.php?page=' . $this->parent->args['page_slug']; | |
} | |
$url = wp_nonce_url( $base, 'redux-options' ); | |
$this->filesystem_init( $url, 'direct', dirname( $file ) ); | |
return $this->do_action( $action, $file, $params ); | |
} | |
public function do_action( $action, $file = '', $params = '' ) { | |
if ( ! empty ( $params ) ) { | |
extract( $params ); | |
} | |
global $wp_filesystem; | |
if ( defined( 'FS_CHMOD_FILE' ) ) { | |
$chmod = FS_CHMOD_FILE; | |
}else{ | |
$chmod = 0644; | |
} | |
//$target_dir = $wp_filesystem->find_folder( dirname( $file ) ); | |
// Do unique stuff | |
if ( $action == 'mkdir' && ! isset( $this->filesystem->killswitch ) ) { | |
wp_mkdir_p( $file ); | |
$res = file_exists( $file ); | |
if ( defined( 'FS_CHMOD_DIR' ) ) { | |
$chmod = FS_CHMOD_DIR; | |
} else { | |
$chmod = 0755; | |
} | |
if ( ! $res ) { | |
mkdir( $file, $chmod, true ); | |
$res = file_exists( $file ); | |
} | |
} elseif ( $action == 'copy' && ! isset( $this->filesystem->killswitch ) ) { | |
if ( isset( $this->parent->ftp_form ) && ! empty( $this->parent->ftp_form ) ) { | |
$res = copy( $file, $destination ); | |
if ( $res ) { | |
chmod( $destination, $chmod ); | |
} | |
} else { | |
$res = $wp_filesystem->copy( $file, $destination, $overwrite, $chmod ); | |
} | |
} elseif ( $action == 'put_contents' && ! isset( $this->filesystem->killswitch ) ) { | |
if ( isset( $this->parent->ftp_form ) && ! empty( $this->parent->ftp_form ) ) { | |
$res = file_put_contents( $file, $content ); | |
if ( $res ) { | |
chmod( $file, $chmod ); | |
} | |
} else { | |
$res = $wp_filesystem->put_contents( $file, $content, FS_CHMOD_FILE ); | |
} | |
} elseif ( $action == 'get_contents' ) { | |
if ( isset( $this->parent->ftp_form ) && ! empty( $this->parent->ftp_form ) ) { | |
$res = file_get_contents( $file ); | |
} else { | |
$res = $wp_filesystem->get_contents( $file ); | |
} | |
} elseif ( $action == 'object' ) { | |
$res = $wp_filesystem; | |
} | |
if ( isset( $res ) && ! $res ) { | |
$this->killswitch = true; | |
} | |
if ( ! $res ) { | |
add_action( "redux/page/{$parent->args['opt_name']}/form/before", array( $this, 'ftp_form' ) ); | |
} | |
return $res; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment