12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- if (!defined('STATUSNET')) {
-
-
- exit(1);
- }
- class MailboxMenu extends Menu
- {
- function show()
- {
- $cur = common_current_user();
- $nickname = $cur->nickname;
- $this->out->elementStart('ul', array('class' => 'nav'));
- $this->item('inbox',
- array('nickname' => $nickname),
-
- _m('MENU','Inbox'),
-
- _('Your incoming messages.'));
- $this->item('outbox',
- array('nickname' => $nickname),
-
- _m('MENU','Outbox'),
-
- _('Your sent messages.'));
- $this->out->elementEnd('ul');
- }
- }
|