HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/pianob/wp-content/plugins/cmssuperheroes/includes/cms_dummy.php
<?php
$sample_image_id = '';
if(!function_exists('cmsDummyData')){
	function cmsDummyData(){
		/* init */
		global $wp_filesystem;
		$msg = '';
		if (empty($wp_filesystem)) {
		    require_once (ABSPATH . '/wp-admin/includes/file.php');
		    WP_Filesystem();
		}
		define('WP_LOAD_IMPORTERS', true);
		/* init importer */
		require_once ABSPATH . 'wp-admin/includes/import.php';
		$importer_error = false;
		if(!class_exists('WP_Importer')){
			$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
			if(file_exists($class_wp_importer)){
				require_once($class_wp_importer);
			}else{
				$importer_error = true;
			}
		}
		if(!class_exists('WP_Import')){
			// check and require importer from theme, it not exists, require from plugin
			$theme_importer = get_template_directory() . '/inc/wordpress-importer/wordpress-importer.php';
			if(file_exists($theme_importer)){
				require_once $theme_importer;
			}else{
				$class_wp_import = CMS_INCLUDES. 'wordpress-importer/wordpress-importer.php';
				if(file_exists($class_wp_import)){
					require_once($class_wp_import);	
				}else{
					$importer_error = true;
				}
			}  
		}
		if($importer_error){
			die("Import error! Please unninstall WP importer plugin and try again");
		}
		$wp_import = new WP_Import();
		/* attachments */
		$wp_import->fetch_attachments = true;
		/* init post query */
		$theme = isset($_POST['theme'])?$_POST['theme']:'cmstheme';
		$current_data  = isset($_POST['current_data'])?$_POST['current_data']:'';
		/* cms used theme */
		update_option('cms-theme-primary',$theme);
		ob_start();
		/* import slider, ess grid and widget setting */
		switch($current_data){
			case 'options':
				$options_json = get_template_directory_uri() . '/inc/dummy/'.$theme.'/options.json';
				$options = $wp_filesystem->get_contents($options_json);
				if($options){
					cmsImportThemeOptions($options);
				}
				else{
					die('<br />Your server don\'t have permission read options file. Theme options isn\'t imported<br />');
				}
				//import posttype
				if(function_exists('cptui_create_custom_post_types')){
					if(file_exists(get_template_directory().'/inc/dummy/'.$theme.'/posttypes/post.json')){
						$posttypes = $wp_filesystem->get_contents(get_template_directory_uri().'/inc/dummy/'.$theme.'/posttypes/post.json');
						update_option('cptui_post_types',json_decode($posttypes,true));
					}
					if(file_exists(get_template_directory().'/inc/dummy/'.$theme.'/posttypes/tax.json')){
						$tax = $wp_filesystem->get_contents(get_template_directory_uri().'/inc/dummy/'.$theme.'/posttypes/tax.json');
						update_option('cptui_taxonomies',json_decode($tax,true));
					}
					flush_rewrite_rules();
				}
				break;
			case 'slider':
				if(!cmsImportRevSlider($theme)){
					$msg = '<br />You haven\'t install Rev Slider plugin. Slider isn\'t imported<br />';
				}
				die($msg);
				break;
			case 'grid':
				if(!cmsImportEssGrid($theme)){
					//$msg = '<br />You haven\'t install Ess Grid plugin. Ess data isn\'t imported<br />';
				}
				die($msg);
				break;
			case 'widget':
				$widgets_json = get_template_directory_uri() . '/inc/dummy/'.$theme.'/widget_data.json';
				$widgets = $wp_filesystem->get_contents($widgets_json);
				if($widgets){
					$msg = '';
					ob_start();
					cmsImportWidgetSetting($widgets);
					ob_end_clean();
				}else{
					$msg = '<br />Your server don\'t have permission read widgets setting file. Widgets setting isn\'t imported<br />';
				}
				die($msg);
				break;
			default:
				if($current_data==16){
					/*delete old menu and import new.*/
					foreach (get_terms('nav_menu') as $nav) {
						wp_delete_nav_menu($nav->slug);
					}
				}
				if(file_exists(get_template_directory() . '/inc/dummy/'.$theme.'/data/sample'.$current_data.'.xml')){
					$wp_import->import(get_template_directory() . '/inc/dummy/'.$theme.'/data/sample'.$current_data.'.xml');
				}
				break;
		}
		ob_end_clean();
		do_action('cms_import_finish');
		/* Done */
		if($current_data == 16){
			die('<br />Import is finished.');
		}
		
		
		
		die();
	}
}
/* replace theme options */
if(!function_exists('cmsImportThemeOptions')){
	function cmsImportThemeOptions($options){
		$options = json_decode($options,true);
		update_option('smof_data',$options);
	}
}
/* Import rev, widget and ess grid*/
if(!function_exists('cmsImportRevSlider')){
	function cmsImportRevSlider($theme){
		if(class_exists('UniteBaseAdminClassRev')){
			require_once(ABSPATH .'wp-content/plugins/revslider/includes/slider.class.php');
			if ($handle = opendir(get_template_directory().'/inc/dummy/'.$theme.'/revslider')) {
			    while (false !== ($entry = readdir($handle))) {
			        if ($entry != "." && $entry != "..") {
			            $_FILES['import_file']['tmp_name']=get_template_directory().'/inc/dummy/'.$theme.'/revslider/'.$entry;
			            $slider = new RevSlider();
			            ob_start();
						$response = $slider->importSliderFromPost(true, true);
						ob_end_clean();
			        }
			    }
			    closedir($handle);
			}
			return true;
		}
		return false;
	}
}
if(!function_exists('cmsImportEssGrid')){
	function cmsImportEssGrid($theme){
		global $wp_filesystem;
		if (empty($wp_filesystem)) {
		    require_once (ABSPATH . '/wp-admin/includes/file.php');
		    WP_Filesystem();
		}
		if(class_exists('Essential_Grid')){
			require_once(ABSPATH .'wp-content/plugins/essential-grid/admin/includes/import.class.php');
			if ($handle = opendir(get_template_directory().'/inc/dummy/'.$theme.'/grid')) {
			    while (false !== ($entry = readdir($handle))) {
			        if ($entry != "." && $entry != "..") {
			        	ob_start();
			        	$im = new Essential_Grid_Import();
			            $file_export=get_template_directory().'/inc/dummy/'.$theme.'/grid/'.$entry;
			            $grid_extract = json_decode($wp_filesystem->get_contents($file_export), true);
						$grids = @$grid_extract['grids'];
						if(!empty($grids) && is_array($grids)){
							$grids_imported = $im->import_grids($grids);
						}
						ob_end_clean();
			        }
			    }
			    closedir($handle);
			}
			return true;
		}
		return false;
	}
}
if(!function_exists('cmsImportWidgetSetting')){
	function cmsImportWidgetSetting($json_data){
		global $wp_registered_sidebars;
    	$json_data = widget_data_parse($json_data);
		$sidebars_data = $json_data[0];
		$widget_data = $json_data[1];
		$current_sidebars = get_option( 'sidebars_widgets' );
		$new_widgets = array( );

		foreach ( $sidebars_data as $import_sidebar => $import_widgets ) :

			foreach ( $import_widgets as $import_widget ) :
				//if the sidebar exists
				if ( isset( $current_sidebars[$import_sidebar] ) ) :
					$title = trim( substr( $import_widget, 0, strrpos( $import_widget, '-' ) ) );
					$index = trim( substr( $import_widget, strrpos( $import_widget, '-' ) + 1 ) );
					$current_widget_data = get_option( 'widget_' . $title );
					$new_widget_name = cmsNewWidgetName( $title, $index );
					$new_index = trim( substr( $new_widget_name, strrpos( $new_widget_name, '-' ) + 1 ) );

					if ( !empty( $new_widgets[ $title ] ) && is_array( $new_widgets[$title] ) ) {
						while ( array_key_exists( $new_index, $new_widgets[$title] ) ) {
							$new_index++;
						}
					}
					$current_sidebars[$import_sidebar][] = $title . '-' . $new_index;
					if ( array_key_exists( $title, $new_widgets ) ) {
						$new_widgets[$title][$new_index] = $widget_data[$title][$index];
						$multiwidget = $new_widgets[$title]['_multiwidget'];
						unset( $new_widgets[$title]['_multiwidget'] );
						$new_widgets[$title]['_multiwidget'] = $multiwidget;
					} else {
						$current_widget_data[$new_index] = $widget_data[$title][$index];
						$current_multiwidget = $current_widget_data['_multiwidget'];
						$new_multiwidget = isset($widget_data[$title]['_multiwidget']) ? $widget_data[$title]['_multiwidget'] : false;
						$multiwidget = ($current_multiwidget != $new_multiwidget) ? $current_multiwidget : 1;
						unset( $current_widget_data['_multiwidget'] );
						$current_widget_data['_multiwidget'] = $multiwidget;
						$new_widgets[$title] = $current_widget_data;
					}

				endif;
			endforeach;
		endforeach;

		if ( isset( $new_widgets ) && isset( $current_sidebars ) ) {
			update_option( 'sidebars_widgets', $current_sidebars );

			foreach ( $new_widgets as $title => $content ) {
				$content = apply_filters( 'widget_data_import', $content, $title );
				update_option( 'widget_' . $title, $content );
			}

			return true;
		}

		return false;
	}
}
if(!function_exists('widget_data_parse')){
	/**
	 * Parse JSON import file and load
	 */
	function widget_data_parse($json_data) {
		//clear widget
		clear_widgets();
		$json_data = json_decode( $json_data, true );
		$sidebar_data = $json_data[0];
		$widget_data = $json_data[1];
		$widgets = array();
		//get widget needed
		foreach($sidebar_data as $sidebar_name => $widget_list){
			if ( count( $widget_list ) == 0 ) {
				continue;
			}
			foreach ( $widget_list as $widget ){
				$widget_type = trim( substr( $widget, 0, strrpos( $widget, '-' ) ) );
				$widget_type_index = trim( substr( $widget, strrpos( $widget, '-' ) + 1 ) );
				foreach ( $widget_data as $name => $option ) {
					if ( $name == $widget_type ) {
						$widget_type_options = $option;
						break;
					}
				}
				if ( !isset($widget_type_options) || !$widget_type_options )
					continue;
				$widgets[$widget_type][$widget_type_index] = 1;
			}
		}
		//end widget needed
		foreach ( $sidebar_data as $title => $sidebar ) {
			$count = count( $sidebar );
			for ( $i = 0; $i < $count; $i++ ) {
				$widget = array( );
				$widget['type'] = trim( substr( $sidebar[$i], 0, strrpos( $sidebar[$i], '-' ) ) );
				$widget['type-index'] = trim( substr( $sidebar[$i], strrpos( $sidebar[$i], '-' ) + 1 ) );
				if ( !isset( $widgets[$widget['type']][$widget['type-index']] ) ) {
					unset( $sidebar_data[$title][$i] );
				}
			}
			$sidebar_data[$title] = array_values( $sidebar_data[$title] );
		}

		foreach ( $widgets as $widget_title => $widget_value ) {
			foreach ( $widget_value as $widget_key => $widget_value ) {
				$widgets[$widget_title][$widget_key] = $widget_data[$widget_title][$widget_key];
			}
		}

		$sidebar_data = array( array_filter( $sidebar_data ), $widgets );
		return $sidebar_data;
	}
}
if(!function_exists('clear_widgets')){
	function clear_widgets() {
		$sidebars = wp_get_sidebars_widgets();
		$inactive = isset($sidebars['wp_inactive_widgets']) ? $sidebars['wp_inactive_widgets'] : array();

		unset($sidebars['wp_inactive_widgets']);

		foreach ( $sidebars as $sidebar => $widgets ) {
			$inactive = array_merge($inactive, $widgets);
			$sidebars[$sidebar] = array();
		}

		$sidebars['wp_inactive_widgets'] = $inactive;
		wp_set_sidebars_widgets( $sidebars );
	}
}
if(!function_exists('cmsNewWidgetName')){
	function cmsNewWidgetName($widget_name, $widget_index){
		$current_sidebars = get_option( 'sidebars_widgets' );
		$all_widget_array = array( );
		foreach ( $current_sidebars as $sidebar => $widgets ) {
			if ( !empty( $widgets ) && is_array( $widgets ) && $sidebar != 'wp_inactive_widgets' ) {
				foreach ( $widgets as $widget ) {
					$all_widget_array[] = $widget;
				}
			}
		}
		while ( in_array( $widget_name . '-' . $widget_index, $all_widget_array ) ) {
			$widget_index++;
		}
		$new_widget_name = $widget_name . '-' . $widget_index;
		return $new_widget_name;
	}
}
/* Replace images */
if ( ! function_exists( 'cs_replace_image_links_with_local' ) ) {
	function cs_replace_image_links_with_local( $zarray, $attack=false ) {
		//$new_array = array ();
		$img = CMS_IMAGES. 'sample.png';
		if(file_exists(get_template_directory().'/assets/images/sample.png')){
			$img = get_template_directory_uri().'/assets/images/sample.png';
		}else{
			$img = CMS_IMAGES. 'sample.png';
		}
		if($attack){
			return $img;
		}
		if ( !is_array ( $zarray ) ) {
		
			return $zarray;
		
		}
		else {
			
			foreach ($zarray as $key => $val ) {
			
				$image_folder = '';
				$image_path = '';
			
				if ( !is_array( $val ) ) {
					// FUNCTIA DE SCHIMBAT URL SI UPLOAD POZA IN FOLDERUL WP-CONTENT
					
						if ( isImage ( $val ) ) {
							$i = $_POST['theme'];
							$image_name = basename($val);
							$image_path_on_upload = explode( '/wp-content/uploads/',$val);
							$wp_upload_dir = wp_upload_dir();
							
							if ( !empty( $image_path_on_upload[1] ) ) {
							
								$image_to_check = $image_path_on_upload[1];
								$image_folder = explode ( $image_name , $image_path_on_upload[1] );
								$image_folder = $image_folder[0];
								
								$image_path = $img;
							}
							
							if ( file_exists ( $image_path ) ) {
								
								if ( !is_dir( $wp_upload_dir['basedir'] . '/' .$image_folder ) ) {
									if ( !mkdir( $wp_upload_dir['basedir'] . '/' .$image_folder ,0777,true ) ){
										echo 'Directory could not be created : '.$image_folder;
									}
								}
								
								// Check if file is not already uploaded
								if ( !file_exists ( $wp_upload_dir['basedir'] . '/' .$image_folder . $image_name ) ) {			
									$wp_filetype = wp_check_filetype(basename($image_name), null );
									
									
									if (!@copy($image_path,$wp_upload_dir['basedir'].'/'. $image_folder . $image_name)) {
										echo 'Could not copy file';
									}
									$attachment = array(
										'guid' => $wp_upload_dir['baseurl'] . '/' .$image_folder . basename( $image_name ), 
										'post_mime_type' => $wp_filetype['type'],
										'post_title' => preg_replace('/\.[^.]+$/', '', basename($image_name)),
										'post_content' => '',
										'post_status' => 'inherit'
									);
																		
									$attach_id = wp_insert_attachment( $attachment, $wp_upload_dir['basedir'] . '/' . $image_folder . $image_name );
																		
									// you must first include the image.php file
									// for the function wp_generate_attachment_metadata() to work
									require_once(ABSPATH . 'wp-admin/includes/image.php');
									$attach_data = wp_generate_attachment_metadata( $attach_id, $image_name );
									wp_update_attachment_metadata( $attach_id, $attach_data );
								
									$new_array[$key] = $wp_upload_dir['baseurl'] . '/' . $image_folder . basename( $image_name );
									
								}
								else {
									$new_array[$key] = $wp_upload_dir['baseurl'] . '/' . $image_folder . basename( $image_name );
								}
								
							}
							else {
							
								$image_path = $img;
								
								if ( !is_dir( $wp_upload_dir['basedir'] . '/' .$image_folder ) ) {
									if ( !mkdir( $wp_upload_dir['basedir'] . '/' .$image_folder ,0777,true ) ){
										echo 'Directory could not be created : '.$image_folder;
									}
								}
								
								// Check if file is not already uploaded
								if ( !file_exists ( $wp_upload_dir['basedir'] . '/' .$image_folder . 'sample.png' ) ) {			
									$wp_filetype = wp_check_filetype(basename($image_name), null );
									
									
									if (!@copy($image_path,$wp_upload_dir['basedir'].'/'. $image_folder . 'sample.png' ) ) {
										echo 'Could not copy file';
									}
									
									$attachment = array(
										'guid' => $wp_upload_dir['baseurl'] . '/' .$image_folder . 'sample.png', 
										'post_mime_type' => $wp_filetype['type'],
										'post_title' => preg_replace('/\.[^.]+$/', '', 'sample.png' ),
										'post_content' => '',
										'post_status' => 'inherit'
									);
																		
									$attach_id = wp_insert_attachment( $attachment, $wp_upload_dir['basedir'] . '/' . $image_folder . 'sample.png' );
									
									global $sample_image_id;
									$sample_image_id = $attach_id;
									
									// you must first include the image.php file
									// for the function wp_generate_attachment_metadata() to work
									require_once(ABSPATH . 'wp-admin/includes/image.php');
									$attach_data = wp_generate_attachment_metadata( $attach_id, $image_name );
									wp_update_attachment_metadata( $attach_id, $attach_data );
								
									$new_array[$key] = $wp_upload_dir['baseurl'] . '/' . $image_folder . 'sample.png';
									
								}
								else {
									$new_array[$key] = $wp_upload_dir['baseurl'] . '/' . $image_folder . 'sample.png';
								}
							
							}
						}
						else {
							$new_array[$key] = $val;
						}
				}
				else {
					$new_array[$key] = cs_replace_image_links_with_local( $val );
					
				}
			}
		
		}
		
		return $new_array; 
		
	}
}
if ( ! function_exists( 'cs_update_featured' ) ) {
	function cs_update_featured( $id )
	{
		global $sample_image_id;
		return $sample_image_id;
	}
}
if ( ! function_exists( 'isImage' ) ) {
  function isImage( $url )
  {
    $pos = strrpos( $url, ".");
	if ($pos === false)
	  return false;
	$ext = strtolower(trim(substr( $url, $pos)));
	$imgExts = array(".gif", ".jpg", ".jpeg", ".png", ".tiff", ".tif"); // this is far from complete but that's always going to be the case...
	if ( in_array($ext, $imgExts) )
	  return true;
    return false;
  }
}
?>