0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_agentinfo.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: wikiplugin_agentinfo.php 33567 2011-03-21 19:01:07Z lphuberdeau $ function wikiplugin_agentinfo_info() { return array( 'name' => tra( 'User Agent Info' ), 'documentation' => 'PluginAgentinfo', 'description' => tra( 'Show user\'s browser and server information' ), 'prefs' => array('wikiplugin_agentinfo'), 'icon' => 'pics/icons/computer.png', 'params' => array( 'info' => array( 'required' => false, 'name' => tra('Info'), 'description' => tra('Display\'s the visitor\'s IP address (IP or default), browser information (BROWSER), or server software (SVRSW).'), 'default' => 'IP', 'filter' => 'alpha', 'options' => array( array('text' => '', 'value' => ''), array('text' => tra('IP address'), 'value' => 'IP'), array('text' => tra('Server software'), 'value' => 'SVRSW'), array('text' => tra('Browser'), 'value' => 'BROWSER'), ), ), ), ); } function wikiplugin_agentinfo($data, $params) { global $tikilib; extract ($params,EXTR_SKIP); $asetup = ''; if (!isset($info)) { $info = 'IP'; } if ($info == 'IP') { $asetup = $tikilib->get_ip_address(); } if ($info == 'SVRSW' && isset($_SERVER['SERVER_SOFTWARE'])) { $asetup = $_SERVER["SERVER_SOFTWARE"]; } if ($info == 'BROWSER' && isset($_SERVER['HTTP_USER_AGENT'])) { $asetup = $_SERVER["HTTP_USER_AGENT"]; } return $asetup; }