0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: messu.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: messu.php 53803 2015-02-06 00:42:50Z jyhem $ function prefs_messu_list() { return array( 'messu_mailbox_size' => array( 'name' => tra('Maximum mailbox size (messages, 0=unlimited)'), 'description' => tra('Maximum mailbox size (messages, 0=unlimited)'), 'type' => 'text', 'size' => '10', 'filter' => 'digits', 'dependencies' => array( 'feature_messages', ), 'default' => '0', ), 'messu_archive_size' => array( 'name' => tra('Maximum mail archive size (messages, 0=unlimited)'), 'description' => tra('Maximum mail archive size (messages, 0=unlimited)'), 'type' => 'text', 'size' => '10', 'filter' => 'digits', 'dependencies' => array( 'feature_messages', ), 'default' => '200', ), 'messu_sent_size' => array( 'name' => tra('Maximum sent box size (messages, 0=unlimited)'), 'description' => tra('Maximum sent box size (messages, 0=unlimited)'), 'type' => 'text', 'size' => '10', 'filter' => 'digits', 'dependencies' => array( 'feature_messages', ), 'default' => '200', ), 'messu_truncate_internal_message' => array( 'name' => tra('Truncate internal message notification to number of characters'), 'description' => tra('Number of characters to show in the message notification sent through e-mail, with a link to read the full message in the Internal Messaging feature in Tiki'), 'type' => 'text', 'size' => '10', 'filter' => 'digits', 'dependencies' => array( 'feature_messages', ), 'default' => '2500', ), ); }