0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: proxy.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: proxy.php 34354 2011-05-10 15:23:51Z xavidp $ function prefs_proxy_list() { return array ( 'proxy_host' => array( 'name' => tra('Host name'), 'description' => tra('Proxy host - without http:// or similar, just the host name'), 'type' => 'text', 'size' => '20', 'dependencies' => array( 'use_proxy', ), ), 'proxy_port' => array( 'name' => tra('Port'), 'description' => tra('Proxy port'), 'type' => 'text', 'filter' => 'digits', 'size' => '5', 'dependencies' => array( 'use_proxy', ), ), ); }