0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: default.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: default.php 33195 2011-03-02 17:43:40Z changi67 $ function prefs_default_list() { return array( 'default_mail_charset' => array( 'name' => tra('Default charset for sending mail'), 'description' => tra('Default charset for sending mail'), 'type' => 'list', 'options' => array( 'utf-8' => tra('utf-8'), 'iso-8859-1' => tra('iso-8859-1'), ), ), 'default_map' => array( 'name' => tra('default mapfile'), 'type' => 'text', 'size' => '50', ), 'default_wiki_diff_style' => array( 'name' => tra('Default diff style'), 'type' => 'list', 'options' => array( 'old' => tra('Only with last version'), 'htmldiff' => tra('HTML diff'), 'sidediff' => tra('Side-by-side diff'), 'sidediff-char' => tra('Side-by-side diff by characters'), 'inlinediff' => tra('Inline diff'), 'inlinediff-char' => tra('Inline diff by characters'), 'sidediff-full' => tra('Full side-by-side diff'), 'sidediff-full-char' => tra('Full side-by-side diff by characters'), 'inlinediff-full' => tra('Full inline diff'), 'inlinediff-full-char' => tra('Full inline diff by characters'), 'unidiff' => tra('Unified diff'), 'sideview' => tra('Side-by-side view'), ), ), 'default_rows_textarea_wiki' => array( 'name' => tra('Wiki'), 'type' => 'text', 'size' => '3', 'shorthint' => tra('rows'), 'filter' => 'digits', ), 'default_rows_textarea_comment' => array( 'name' => tra('Default number of rows for comment box'), 'type' => 'text', 'size' => '3', 'shorthint' => tra('rows'), 'filter' => 'digits', ), 'default_rows_textarea_forum' => array( 'name' => tra('Forum'), 'type' => 'text', 'size' => '3', 'shorthint' => tra('rows'), 'filter' => 'digits', ), 'default_rows_textarea_forumthread' => array( 'name' => tra('Forum reply'), 'type' => 'text', 'size' => '3', 'shorthint' => tra('rows'), 'filter' => 'digits', ), 'default_kaltura_editor' => array( 'name' => tra('Default Editor'), 'type' => 'list', 'options' => array( 'kse' => tra('Simple'), 'kae' => tra('Advanced'), ), ), ); }