0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: file.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: file.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_file_list() { return array( 'file_galleries_comments_per_page' => array( 'name' => tra('Default number per page'), 'description' => tra('how many comments per page'), 'type' => 'text', 'size' => '5', 'default' => 10, ), 'file_galleries_comments_default_ordering' => array( 'name' => tra('Default ordering'), 'description' => tra('default ordering algorithm'), 'type' => 'list', 'options' => array( 'commentDate_desc' => tra('Newest first'), 'commentDate_asc' => tra('Oldest first'), 'points_desc' => tra('Points'), ), 'default' => 'points_desc', ), ); }