1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 21:18:04 +01:00
php-e107/e107_plugins/pm/pm_default.php
2006-12-02 04:36:16 +00:00

25 lines
537 B
PHP
Executable File

<?php
if (!defined('e107_INIT')) { exit; }
function pm_set_default_prefs()
{
$ret = array(
'title' => 'PMLAN_PM',
'animate' => '1',
'dropdown' => '0',
'read_timeout' => '0',
'unread_timeout' => '0',
'popup' => '0',
'popup_delay' => '',
'pm_class' => e_UC_MEMBER,
'notify_class' => e_UC_ADMIN,
'receipt_class' => e_UC_MEMBER,
'attach_class' => e_UC_ADMIN,
'attach_size' => 500,
'sendall_class' => e_UC_ADMIN,
'multi_class' => e_UC_ADMIN,
'allow_userclass' => '1'
);
return $ret;
}
?>