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
<?php
if (!function_exists('easel_footer_text')) {
function easel_footer_text() {
$output = "<p class=\"footer-text\">\r\n";
$output .= easel_copyright_info();
$output .= "<span class=\"footer-pipe\">|</span> ";
$output .= __('Powered by','easel') . " <a href=\"http://wordpress.org/\">WordPress</a> " . __('with','easel'). " <a href=\"http://frumph.net/easel/\">Easel</a>\r\n";
$output .= easel_hosted_on();
$output .= "<span class=\"footer-subscribe\">";
$output .= "<span class=\"footer-pipe\">|</span> ";
$output .= "Subscribe: <a href=\"" . get_bloginfo('rss2_url') ."\">RSS</a>\r\n";
$output .= "</span>\r\n";
if (!easel_themeinfo('disable_scroll_to_top')) {
$output .= "<span class=\"footer-uptotop\">";
$output .= "<span class=\"footer-pipe\">|</span> ";
$output .= "<a href=\"#outside\" onclick=\"scrollup(); return false;\">".__('Back to Top ↑','easel')."</a>";
$output .="</span>\r\n";
}
$output .= "</p>\r\n";
echo apply_filters('easel_footer_text', $output);
}
}
if (!function_exists('easel_hosted_on')) {
function easel_hosted_on() {
if (is_multisite()) {
$current_site = get_current_site();
if (!isset($current_site->site_name)) {
$site_name = ucfirst( $current_site->domain );
} else {
$site_name = $current_site->site_name;
}
$output = "<span class=\"footer-pipe\">|</span> ";
$output .= __('Hosted on','easel') . ' <a href="http://'. $current_site->domain. $current_site->path. '">'. $site_name. '</a> ';
return apply_filters('easel_hosted_on', $output);
}
}
}
if (!function_exists('easel_copyright_info')) {
function easel_copyright_info() {
$copyright_name = easel_themeinfo('copyright_name');
if (empty($copyright_name)) $copyright_name = get_bloginfo('name');
$copyright_url = easel_themeinfo('copyright_url');
if (empty($copyright_url)) $copyright_url = home_url();
$copyright = __('©', 'easel'). easel_copyright_dates() . ' ' . apply_filters('easel_copyright_info_name', '<a href="'.$copyright_url.'">' . $copyright_name . '</a>') . ' ';
return apply_filters('easel_copyright_info', $copyright);
}
}
if (!function_exists('easel_copyright_dates')) {
function easel_copyright_dates() {
global $wpdb;
$copyright_dates = $wpdb->get_results("
SELECT
YEAR(min(post_date_gmt)) AS firstdate,
YEAR(max(post_date_gmt)) AS lastdate
FROM
$wpdb->posts
WHERE
post_status = 'publish'
");
$output = '';
if ($copyright_dates) {
$copyright = $copyright_dates[0]->firstdate;
if($copyright_dates[0]->firstdate != $copyright_dates[0]->lastdate) {
$copyright .= '-' . $copyright_dates[0]->lastdate;
}
$output = $copyright;
}
return apply_filters('easel_copyright_dates', $output);
}
}
?>