. * * $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('Zugriff verweigert'); } ### ANZEIGE LOG 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 "
Datum | "; print "TCP/IP | "; print "Referer | "; print "Suchbegriff | "; print "Post/Page | "; print "Username | "; print "
---|---|---|---|---|---|
".$date." | "; print ""; print " | "; if ($referer == "--") { print "-- | "; } else { if($mask != true) { print "".$printreferer.""; } else { $referer = htmlspecialchars($referer, ENT_QUOTES); print "".$printreferer.""; } } print "".$keyword." | "; print "".$title." | "; print "".$username." | "; print "