. * * $Id$ * */ /** * based upon semmelstatz * Copyright (c) 2005-2009 Andreas 'Redunzl' Mueller (redunzl@gmx.de) * * @license http://www.gnu.org/licenses/gpl-2.0.html * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License (version 2) as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ if(!current_user_can('manage_statz')) { die(semr_i18n("Restricted Area")); } global $wpdb; $sem_options = get_option('semmelstatzR_options'); ### optionsarray auslesen $limit = $sem_options["statz_datarecs_limit"]; $mask = $sem_options["statz_mask_referer"]; $completerecords = $wpdb->get_results("SELECT id, ip, time, referer, page, username FROM ". $wpdb->statz." ORDER BY time DESC LIMIT 0, ".$limit); print "
"; print "

"; print "

SemmelstatzR > ".semr_i18n("Log")."

"; print "
"; printf(semr_i18n("The %s newest records"), $limit); print "
"; if ($completerecords == NULL) { print '... '. semr_i18n("no entries at all").''; return; } print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; foreach ($completerecords as $key=>$completerecord) { $id = $completerecord->id; $ip = $completerecord->ip; if(sem_checkIfIPisEncoded($ip) == true) $ip = sem_decodeIP($ip); $date = mysql2date("d.m.Y G:i", $completerecord->time); $referer = $completerecord->referer; if($referer == "") { $referer = "--"; } else { if(strlen($referer) >= 50) { $printreferer = substr($referer, 0, 50)."..."; } else { $printreferer = $referer; } } $keyword = sem_getKeyword($referer); if(empty($keyword)) $keyword ='--'; $page = $completerecord->page; if ($page == 0) { $link = get_option('siteurl'); $title = "0"; //oder wie auch immer } else { $link = get_permalink($page); $postarray = get_post($page, ARRAY_A); $title = $postarray['post_title']; } $username = $completerecord->username; print ""; print ""; print ""; print ""; } else { if($mask != true) { print "".$printreferer.""; } else { $referer = htmlspecialchars($referer, ENT_QUOTES); print "".$printreferer.""; } } print ""; print ""; print ""; print ""; } print ""; print "
".semr_i18n("Date")."".semr_i18n("TCP/IP")."".semr_i18n("Referrer")."".semr_i18n("Search term")."".semr_i18n("Post/Page")."".semr_i18n("Username")."
".$date."     "; if ($referer == "--") { print "--".$keyword."".$title."".$username."
"; print "
"; if (function_exists('sem_showCopyright')) sem_showCopyright(); print "
"; ?>