You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
1.3 KiB

<?php
// (c) Copyright 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$
function prefs_url_list()
{
return [
'url_after_validation' => [
'name' => tra('URL the user is redirected to after account validation'),
'description' => tra('The default page a Registered user sees after account validation is "tiki-information.php?msg=Account validated successfully".'),
'hint' => tra('Default') . ': tiki-information.php?msg=' . tra('Account validated successfully.'),
'type' => 'text',
'dependencies' => [
'allowRegister',
],
'default' => '',
],
'url_anonymous_page_not_found' => [
'name' => tra('The URL that the anonymous user is redirected to when a page is not found'),
'type' => 'text',
'default' => '',
],
'url_only_ascii' => [
'name' => tra('Use Only ASCII in SEFURLs'),
'description' => tra('Do not use accented characters in short (search engine friendly) URLs.'),
'type' => 'flag',
'perspective' => false,
'default' => 'n',
],
];
}