mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
39 lines
797 B
PHP
39 lines
797 B
PHP
<?php
|
|
/**
|
|
* EGroupware Mail: Wizard to create mail accounts
|
|
*
|
|
* @link http://www.stylite.de
|
|
* @package emailadmin
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* Wizard to create mail accounts
|
|
*
|
|
* Extends emailadmin_wizard to allow non-admins to use it.
|
|
*/
|
|
class mail_wizard extends emailadmin_wizard
|
|
{
|
|
/**
|
|
* Prefix for callback names
|
|
*/
|
|
const APP_CLASS = 'mail.mail_wizard.';
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// need emailadmin's app.css file
|
|
egw_framework::includeCSS('emailadmin','app');
|
|
|
|
// and translations
|
|
translation::add_app('emailadmin');
|
|
|
|
egw_framework::validate_file('/emailadmin/js/app.js');
|
|
}
|
|
} |