upload_dir = $upload['basedir']; $this->xl_core_dir = $this->upload_dir . '/' . $this->core_dir; $this->set_component( $component ); $this->makedirs(); self::$ins = 1; $folder_arr = array( 'xl_support', 'finale-woocommerce-sales-countdown-timer-discount', 'woo-thank-you-page-nextmove-lite', 'xl-woocommerce-sales-triggers', 'finale-woocommerce-sales-countdown-timer-discount-plugin', 'wcct-finale-lite', ); foreach ( $folder_arr as $folder_name ) { $folder_path = $this->upload_dir . '/' . $folder_name; $this->delete_folder( $folder_path, true ); } } public function set_component( $component ) { if ( '' != $component ) { $this->component = $component; } } public function get_component_dir() { return $this->xl_core_dir . '/' . $this->component; } public function touch( $file, $time = 0, $atime = 0 ) { $file = $this->file_path( $file ); return parent::touch( $file, $time, $atime ); } public function file_path( $file ) { $file_path = $this->xl_core_dir . '/' . $this->component . '/' . $file; return $file_path; } public function folder_path( $folder_name ) { $folder_path = $this->xl_core_dir . '/' . $folder_name . '/'; return $folder_path; } public function is_readable( $file ) { $file = $this->file_path( $file ); return parent::is_readable( $file ); } public function is_writable( $file ) { $file = $this->file_path( $file ); return parent::is_writable( $file ); } public function put_contents( $file, $contents, $mode = false ) { $file = $this->file_path( $file ); return parent::put_contents( $file, $contents, $mode ); } public function delete_file( $file, $recursive = false, $type = false ) { $file = $this->file_path( $file ); return parent::delete( $file, $recursive, $type ); } public function delete_all( $folder_name, $recursive = false ) { $folder_path = $this->folder_path( $folder_name ); return parent::rmdir( $folder_path, $recursive ); } public function delete_folder( $folder_path, $recursive = false ) { return parent::rmdir( $folder_path, $recursive ); } /** * Overriding as files are not removing after WP 5.3 * Directory is not readable */ public function dirlist( $path, $include_hidden = true, $recursive = false ) { if ( $this->is_file( $path ) ) { $limit_file = basename( $path ); $path = dirname( $path ); } else { $limit_file = false; } if ( ! $this->is_dir( $path ) ) { return false; } $dir = @dir( $path ); if ( ! $dir ) { return false; } $ret = array(); while ( false !== ( $entry = $dir->read() ) ) { $struc = array(); $struc['name'] = $entry; if ( '.' == $struc['name'] || '..' == $struc['name'] ) { continue; } if ( ! $include_hidden && '.' == $struc['name'][0] ) { continue; } if ( $limit_file && $struc['name'] != $limit_file ) { continue; } $struc['perms'] = $this->gethchmod( $path . '/' . $entry ); $struc['permsn'] = $this->getnumchmodfromh( $struc['perms'] ); $struc['number'] = false; $struc['owner'] = $this->owner( $path . '/' . $entry ); $struc['group'] = $this->group( $path . '/' . $entry ); $struc['size'] = $this->size( $path . '/' . $entry ); $struc['lastmodunix'] = $this->mtime( $path . '/' . $entry ); $struc['lastmod'] = date( 'M j', $struc['lastmodunix'] ); $struc['time'] = date( 'h:i:s', $struc['lastmodunix'] ); $struc['type'] = $this->is_dir( $path . '/' . $entry ) ? 'd' : 'f'; if ( 'd' == $struc['type'] ) { if ( $recursive ) { $struc['files'] = $this->dirlist( $path . '/' . $struc['name'], $include_hidden, $recursive ); } else { $struc['files'] = array(); } } $ret[ $struc['name'] ] = $struc; } $dir->close(); unset( $dir ); return $ret; } public function exists( $file ) { $file = $this->file_path( $file ); return parent::exists( $file ); } public function get_contents( $file ) { $file = $this->file_path( $file ); return parent::get_contents( $file ); } public function makedirs() { $component = $this->component; if ( parent::is_writable( $this->upload_dir ) ) { if ( false === $this->is_dir( $this->xl_core_dir ) ) { $this->mkdir( $this->xl_core_dir ); } /** creating htaccess file */ if ( false === $this->is_file( trailingslashit( $this->xl_core_dir ) . '/.htaccess' ) ) { $file_handle = @fopen( trailingslashit( $this->xl_core_dir ) . '/.htaccess', 'w' ); // phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged, WordPress.WP.AlternativeFunctions.file_system_read_fopen if ( $file_handle ) { $string = "Options -Indexes\ndeny from all\n\nOrder Allow,Deny\nAllow from all\n"; fwrite( $file_handle, $string ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fwrite fclose( $file_handle ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose } } $dir = $this->xl_core_dir . '/' . $component; if ( false === $this->is_dir( $dir ) ) { $this->mkdir( $dir ); } } } } }