0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: https.php
<?php // (c) Copyright 2002-2015 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 53803 2015-02-06 00:42:50Z jyhem $ 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', 'default' => 'n', 'keywords' => 'SSL secure', ), 'https_port' => array( 'name' => tra('HTTPS port'), 'description' => tra('the HTTPS port for this server, default=443'), 'type' => 'text', 'size' => 5, 'filter' => 'digits', 'default' => '', 'keywords' => 'SSL secure', 'shorthint' => tra('If left empty, port 443 will be used'), ), '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'), ), 'default' => 'allowed', 'warning' => tra('Do not require HTTPS until you have setup and tested the connection, otherwise, you will make your whole site unaccessible'), 'keywords' => 'SSL secure', ), ); }