diff options
author | Mario <mario@mariovavti.com> | 2022-01-11 09:29:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-11 09:29:18 +0000 |
commit | 867deda24771848575bb7d9cb7e4bfc82e642e33 (patch) | |
tree | 41606346538a033e5a998651b68dd07a9fc90576 /Zotlabs/Widget/Mailmenu.php | |
parent | f8149face55ecd720ef182c67c9c1aca7af4c2fe (diff) | |
download | volse-hubzilla-867deda24771848575bb7d9cb7e4bfc82e642e33.tar.gz volse-hubzilla-867deda24771848575bb7d9cb7e4bfc82e642e33.tar.bz2 volse-hubzilla-867deda24771848575bb7d9cb7e4bfc82e642e33.zip |
remove legacy mail which has been deprecated since a year
Diffstat (limited to 'Zotlabs/Widget/Mailmenu.php')
-rw-r--r-- | Zotlabs/Widget/Mailmenu.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/Zotlabs/Widget/Mailmenu.php b/Zotlabs/Widget/Mailmenu.php deleted file mode 100644 index ca022c807..000000000 --- a/Zotlabs/Widget/Mailmenu.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Zotlabs\Widget; - -class Mailmenu { - - function widget($arr) { - - if (! local_channel()) - return; - - return replace_macros(get_markup_template('message_side.tpl'), array( - '$title' => t('Private Mail Menu'), - '$combined' => array( - 'label' => t('Combined View'), - 'url' => z_root() . '/mail/combined', - 'sel' => (argv(1) == 'combined' || argc() == 1), - ), - '$inbox' => array( - 'label' => t('Inbox'), - 'url' => z_root() . '/mail/inbox', - 'sel' => (argv(1) == 'inbox'), - ), - '$outbox' => array( - 'label' => t('Outbox'), - 'url' => z_root() . '/mail/outbox', - 'sel' => (argv(1) == 'outbox'), - ), -/* - '$new' => array( - 'label' => t('New Message'), - 'url' => z_root() . '/mail/new', - 'sel'=> (argv(1) == 'new'), - ) -*/ - )); - } -} |