* @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'); } }