Adding formfields for autoresponder, fixes #629
Signed-off-by: Florian Aders (EleRas) <eleras@froxlor.org>
This commit is contained in:
@@ -0,0 +1,60 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file is part of the Froxlor project.
|
||||||
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the COPYING
|
||||||
|
* file that was distributed with this source code. You can also view the
|
||||||
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
||||||
|
*
|
||||||
|
* @copyright (c) the authors
|
||||||
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
||||||
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
||||||
|
* @package Formfields
|
||||||
|
* @version $Id: formfield.domains_add.php 112 2010-12-14 12:11:20Z d00p $
|
||||||
|
*/
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'autoresponder_add' => array(
|
||||||
|
'title' => $lng['autoresponder']['autoresponder_new'],
|
||||||
|
'image' => 'icons/autoresponder_add.png',
|
||||||
|
'sections' => array(
|
||||||
|
'section_a' => array(
|
||||||
|
'title' => $lng['autoresponder']['autoresponder_new'],
|
||||||
|
'image' => 'icons/autoresponder_add.png',
|
||||||
|
'fields' => array(
|
||||||
|
'account' => array(
|
||||||
|
'label' => $lng['autoresponder']['account'],
|
||||||
|
'type' => 'select',
|
||||||
|
'select_var' => $accounts,
|
||||||
|
),
|
||||||
|
'active' => array(
|
||||||
|
'label' => $lng['autoresponder']['active'],
|
||||||
|
'type' => 'yesno',
|
||||||
|
'yesno_var' => $isactive,
|
||||||
|
),
|
||||||
|
'date_from' => array(
|
||||||
|
'label' => $lng['autoresponder']['date_from'] . " (dd-mm-yyyy)",
|
||||||
|
'type' => 'textul',
|
||||||
|
'maxlength' => 10,
|
||||||
|
'ul_field' => $date_from_off,
|
||||||
|
),
|
||||||
|
'date_until' => array(
|
||||||
|
'label' => $lng['autoresponder']['date_until'] . " (dd-mm-yyyy)",
|
||||||
|
'type' => 'textul',
|
||||||
|
'maxlength' => 10,
|
||||||
|
'ul_field' => $date_until_off,
|
||||||
|
),
|
||||||
|
'message' => array(
|
||||||
|
'style' => 'vertical-align:top;',
|
||||||
|
'label' => $lng['autoresponder']['message'],
|
||||||
|
'type' => 'textarea',
|
||||||
|
'cols' => 60,
|
||||||
|
'rows' => 12
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file is part of the Froxlor project.
|
||||||
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the COPYING
|
||||||
|
* file that was distributed with this source code. You can also view the
|
||||||
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
||||||
|
*
|
||||||
|
* @copyright (c) the authors
|
||||||
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
||||||
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
||||||
|
* @package Formfields
|
||||||
|
* @version $Id: formfield.domains_add.php 112 2010-12-14 12:11:20Z d00p $
|
||||||
|
*/
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'autoresponder_edit' => array(
|
||||||
|
'title' => $lng['autoresponder']['autoresponder_edit'],
|
||||||
|
'image' => 'icons/autoresponder_edit.png',
|
||||||
|
'sections' => array(
|
||||||
|
'section_a' => array(
|
||||||
|
'title' => $lng['autoresponder']['autoresponder_edit'],
|
||||||
|
'image' => 'icons/autoresponder_edit.png',
|
||||||
|
'fields' => array(
|
||||||
|
'account' => array(
|
||||||
|
'label' => $lng['autoresponder']['account'],
|
||||||
|
'type' => 'label',
|
||||||
|
'value' => $email,
|
||||||
|
),
|
||||||
|
'active' => array(
|
||||||
|
'label' => $lng['autoresponder']['active'],
|
||||||
|
'type' => 'yesno',
|
||||||
|
'yesno_var' => $isactive,
|
||||||
|
),
|
||||||
|
'date_from' => array(
|
||||||
|
'label' => $lng['autoresponder']['date_from'] . " (dd-mm-yyyy)",
|
||||||
|
'type' => 'textul',
|
||||||
|
'maxlength' => 10,
|
||||||
|
'ul_field' => $date_from_off,
|
||||||
|
'value' => $date_from,
|
||||||
|
),
|
||||||
|
'date_until' => array(
|
||||||
|
'label' => $lng['autoresponder']['date_until'] . " (dd-mm-yyyy)",
|
||||||
|
'type' => 'textul',
|
||||||
|
'maxlength' => 10,
|
||||||
|
'ul_field' => $date_until_off,
|
||||||
|
'value' => $date_until,
|
||||||
|
),
|
||||||
|
'subject' => array(
|
||||||
|
'label' => $lng['autoresponder']['subject'],
|
||||||
|
'type' => 'text',
|
||||||
|
'value' => $subject
|
||||||
|
),
|
||||||
|
'message' => array(
|
||||||
|
'style' => 'vertical-align:top;',
|
||||||
|
'label' => $lng['autoresponder']['message'],
|
||||||
|
'type' => 'textarea',
|
||||||
|
'cols' => 60,
|
||||||
|
'rows' => 12,
|
||||||
|
'value' => $message,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user