fsf changes, meant to be rebased on upstream
[squirrelmail.git] / plugins / newmail / setup.php
CommitLineData
4508b1b6 1<?php
4b4abf93 2
ebe02dfc 3/**
4 * newmail.php
5 *
ebe02dfc 6 * Copyright (c) 2000 by Michael Huttinger
ebe02dfc 7 *
8 * Quite a hack -- but my first attempt at a plugin. We were
9 * looking for a way to play a sound when there was unseen
10 * messages to look at. Nice for users who keep the squirrel
11 * mail window up for long periods of time and want to know
12 * when mail arrives.
13 *
14 * Basically, I hacked much of left_main.php into a plugin that
15 * goes through each mail folder and increments a flag if
16 * there are unseen messages. If the final count of unseen
17 * folders is > 0, then we play a sound (using the HTML at the
18 * far end of this script).
19 *
20 * This was tested with IE5.0 - but I hear Netscape works well,
21 * too (with a plugin).
22 *
c997cbe6 23 * @copyright 1999-2021 The SquirrelMail Project Team
4b4abf93 24 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
ebe02dfc 25 * @version $Id$
26 * @package plugins
27 * @subpackage newmail
28 */
4508b1b6 29
ebe02dfc 30
91e0dccc 31/**
ebe02dfc 32 * Init newmail plugin
33 */
34function squirrelmail_plugin_init_newmail() {
c80190fc 35
ebe02dfc 36 global $squirrelmail_plugin_hooks;
48879ef0 37 $totalNewArr=array();
38 global $totalNewArr;
ebe02dfc 39
c80190fc 40 $squirrelmail_plugin_hooks['folder_status']['newmail']
41 = 'newmail_folder_status';
42 $squirrelmail_plugin_hooks['template_construct_left_main.tpl']['newmail']
43 = 'newmail_plugin';
44 $squirrelmail_plugin_hooks['optpage_register_block']['newmail']
45 = 'newmail_optpage_register_block';
46 $squirrelmail_plugin_hooks['options_save']['newmail']
47 = 'newmail_sav';
48 $squirrelmail_plugin_hooks['loading_prefs']['newmail']
49 = 'newmail_pref';
50 $squirrelmail_plugin_hooks['optpage_set_loadinfo']['newmail']
51 = 'newmail_set_loadinfo';
52
ebe02dfc 53}
4508b1b6 54
c80190fc 55
ebe02dfc 56/**
57 * Register newmail option block
58 */
59function newmail_optpage_register_block() {
e8489902 60 include_once(SM_PATH . 'plugins/newmail/functions.php');
61 newmail_optpage_register_block_function();
ebe02dfc 62}
4508b1b6 63
c80190fc 64
ebe02dfc 65/**
66 * Save newmail plugin settings
67 */
68function newmail_sav() {
e8489902 69 include_once(SM_PATH . 'plugins/newmail/functions.php');
70 newmail_sav_function();
ebe02dfc 71}
4508b1b6 72
c80190fc 73
ebe02dfc 74/**
75 * Load newmail plugin settings
76 */
77function newmail_pref() {
e8489902 78 include_once(SM_PATH . 'plugins/newmail/functions.php');
79 newmail_pref_function();
ebe02dfc 80}
2d4c15d6 81
c80190fc 82
ebe02dfc 83/**
84 * Set loadinfo data
85 *
86 * Used by option page when saving settings.
87 */
88function newmail_set_loadinfo() {
e8489902 89 include_once(SM_PATH . 'plugins/newmail/functions.php');
90 newmail_set_loadinfo_function();
ebe02dfc 91}
e697b6cc 92
c80190fc 93
ebe02dfc 94/**
95 * Insert needed data in left_main
96 */
97function newmail_plugin() {
e8489902 98 include_once(SM_PATH . 'plugins/newmail/functions.php');
c80190fc 99 return newmail_plugin_function();
100}
101
102
103/**
104 * Returns info about this plugin
105 *
106 */
107function newmail_info() {
108 return array(
109 'english_name' => 'New Mail',
110 'authors' => array(
111 'SquirrelMail Team' => array(),
112 ),
113 'version' => 'CORE',
114 'required_sm_version' => 'CORE',
115 'requires_configuration' => 0,
116 'summary' => 'This plugin is used to notify the user when a new mail arrives.',
117 'details' => 'This plugin is used to notify the user when a new mail arrives. This is accomplished by playing a sound through the browser or spawning a popup window whenever the user has unseen messages.',
118 );
ebe02dfc 119}
c80190fc 120
121
122
123/**
124 * Returns version info about this plugin
125 *
126 */
127function newmail_version() {
128 $info = newmail_info();
129 return $info['version'];
130}
131
132