1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-15 03:54:39 +01:00
php-e107/e107_plugins/pm/pm_default.php

26 lines
562 B
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
if (!defined('e107_INIT')) { exit; }
function pm_set_default_prefs()
{
$ret = array(
'title' => 'PMLAN_PM',
2006-12-02 04:36:16 +00:00
'animate' => '1',
'dropdown' => '0',
'read_timeout' => '0',
2006-12-02 04:36:16 +00:00
'unread_timeout' => '0',
'popup' => '0',
'popup_delay' => '',
'perpage' => '10',
2006-12-02 04:36:16 +00:00
'pm_class' => e_UC_MEMBER,
'notify_class' => e_UC_ADMIN,
'receipt_class' => e_UC_MEMBER,
2006-12-02 04:36:16 +00:00
'attach_class' => e_UC_ADMIN,
'attach_size' => 500,
'sendall_class' => e_UC_ADMIN,
2006-12-02 04:36:16 +00:00
'multi_class' => e_UC_ADMIN,
'allow_userclass' => '1'
);
return $ret;
}
?>