81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @category Horde
|
|
* @copyright 2012-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
|
|
/**
|
|
* Special prefs handling for the 'draftsselect' preference.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @category Horde
|
|
* @copyright 2012-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
class IMP_Prefs_Special_Drafts extends IMP_Prefs_Special_SpecialMboxes implements Horde_Core_Prefs_Ui_Special
|
|
{
|
|
/**
|
|
*/
|
|
public function init(Horde_Core_Prefs_Ui $ui)
|
|
{
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function display(Horde_Core_Prefs_Ui $ui)
|
|
{
|
|
global $injector, $page_output;
|
|
|
|
$page_output->addScriptFile('folderprefs.js');
|
|
$page_output->addInlineJsVars(array(
|
|
'ImpFolderPrefs.mboxes.drafts' => _("Enter the name for your new drafts mailbox.")
|
|
));
|
|
|
|
$view = new Horde_View(array(
|
|
'templatePath' => IMP_TEMPLATES . '/prefs'
|
|
));
|
|
$view->addHelper('Horde_Core_View_Helper_Label');
|
|
|
|
$iterator = new IMP_Ftree_IteratorFilter(
|
|
$injector->getInstance('IMP_Ftree')
|
|
);
|
|
$iterator->add(array(
|
|
$iterator::NONIMAP,
|
|
$iterator::REMOTE
|
|
));
|
|
$iterator->mboxes = array('INBOX');
|
|
|
|
$view->flist = new IMP_Ftree_Select(array(
|
|
'iterator' => $iterator,
|
|
'new_mbox' => true,
|
|
'selected' => IMP_Mailbox::getPref(IMP_Mailbox::MBOX_DRAFTS)
|
|
));
|
|
$view->nombox = IMP_Mailbox::formTo(self::PREF_NO_MBOX);
|
|
$view->special_use = $this->_getSpecialUse(Horde_Imap_Client::SPECIALUSE_DRAFTS);
|
|
|
|
return $view->render('drafts');
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function update(Horde_Core_Prefs_Ui $ui)
|
|
{
|
|
return $this->_updateSpecialMboxes(
|
|
IMP_Mailbox::MBOX_DRAFTS,
|
|
IMP_Mailbox::formFrom($ui->vars->drafts),
|
|
$ui->vars->drafts_new,
|
|
Horde_Imap_Client::SPECIALUSE_DRAFTS,
|
|
$ui
|
|
);
|
|
}
|
|
|
|
}
|