0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: https.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: https.php 33195 2011-03-02 17:43:40Z changi67 $ function prefs_https_list() { return array( 'https_external_links_for_users' => array( 'name' => tra('Use HTTPS when building user-specific links'), 'description' => tra('When building notification emails, RSS feeds or other externally available links, use HTTPS when the content applies to a specific user. HTTPS must be configured on the server.'), 'type' => 'flag', ), 'https_port' => array( 'name' => tra('HTTPS port'), 'type' => 'text', 'size' => 5, 'filter' => 'digits', ), 'https_login' => array( 'name' => tra('Use HTTPS login'), 'description' => tra('Increase security by allowing to transmit authentication credentials over SSL. Certificates must be configured on the server.'), 'type' => 'list', 'options' => array( 'disabled' => tra('Disabled'), 'allowed' => tra('Allow secure (https) login'), 'encouraged' => tra('Encourage secure (https) login'), 'force_nocheck' => tra('Consider we are always in HTTPS, but do not check'), 'required' => tra('Require secure (https) login'), ), ), ); }