egroupware_official/addressbook/sitemgr/class.module_addressbook_contactform.inc.php

122 lines
3.8 KiB
PHP
Raw Normal View History

<?php
/**
2011-02-01 03:02:08 +01:00
* Addressbook - Sitemgr contact form
*
* @link http://www.egroupware.org
2011-02-01 03:02:08 +01:00
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @package addressbook
* @copyright (c) 2007 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
/**
2011-02-01 03:02:08 +01:00
* SiteMgr contact form for the addressbook
*
*/
2011-02-01 03:02:08 +01:00
class module_addressbook_contactform extends sitemgr_module
{
/**
* Constructor
*
2011-02-01 03:02:08 +01:00
* @return module_addressbook_contactform
*/
function __construct()
{
$this->arguments = array(); // get's set in get_user_interface
2011-02-01 03:02:08 +01:00
$this->title = lang('Contactform');
$this->description = lang('This module displays a contactform, that stores direct into the addressbook.');
2011-02-01 03:02:08 +01:00
$this->etemplate_method = 'addressbook.addressbook_contactform.display';
}
/**
2011-02-01 03:02:08 +01:00
* Reimplemented to add the addressbook translations and fetch the addressbooks only if needed for the user-interface
*
* @return array
*/
function get_user_interface()
{
2011-02-01 03:02:08 +01:00
$GLOBALS['egw']->translation->add_app('addressbook');
$uicontacts = new addressbook_ui();
$default = $fields = array(
'org_name' => lang('Company'),
'org_unit' => lang('Department'),
'n_fn' => lang('Prefix').', '.lang('Firstname').' + '.lang('Lastname'),
'sep1' => '----------------------------',
2011-02-01 03:02:08 +01:00
'email' => lang('email'),
'tel_work' => lang('work phone'),
'tel_cell' => lang('mobile phone'),
'tel_fax' => lang('fax'),
'tel_home' => lang('home phone'),
'url' => lang('url'),
'sep2' => '----------------------------',
'adr_one_street' => lang('street'),
'adr_one_street2' => lang('address line 2'),
'adr_one_locality' => lang('city').' + '.lang('zip code'),
'sep3' => '----------------------------',
);
foreach($uicontacts->customfields as $name => $data)
{
$fields['#'.$name] = $data['label'];
}
$fields += array(
'sep4' => '----------------------------',
'note' => lang('message'),
'sep5' => '----------------------------',
'captcha' => lang('Verification'),
);
$this->i18n = True;
$this->arguments = array(
2011-02-01 03:02:08 +01:00
'arg1' => array(
'type' => 'select',
2011-02-01 03:02:08 +01:00
'label' => lang('Addressbook the contact should be saved to').' ('.lang('The anonymous user needs add rights for it!').')',
'options' => array(
'' => lang('None'),
2011-02-01 03:02:08 +01:00
)+$uicontacts->get_addressbooks(EGW_ACL_ADD) // add to not show the accounts!
),
2011-02-01 03:02:08 +01:00
'arg4' => array(
'type' => 'textfield',
'label' => lang('Email addresses (comma separated) to send the contact data'),
'params' => array('size' => 80),
2007-06-06 10:18:45 +02:00
),
2011-02-01 03:02:08 +01:00
'arg6' => array(
'type' => 'textfield',
2011-02-01 03:02:08 +01:00
'label' => lang('Subject for email'),
'params' => array('size' => 80),
'default' => lang('Contactform'),
'i18n' => True,
2007-06-06 10:18:45 +02:00
),
2011-02-01 03:02:08 +01:00
'arg2' => array(
'type' => 'select',
'label' => lang('Contact fields to show'),
'multiple' => true,
'options' => $fields,
'default' => $default,
2007-06-06 11:04:36 +02:00
'params' => array('size' => 9),
),
2011-02-01 03:02:08 +01:00
'arg3' => array(
'type' => 'textfield',
'label' => lang('Message after submitting the form'),
'params' => array('size' => 80),
'default' => lang('Thank you for contacting us.'),
'i18n' => True,
2011-02-01 03:02:08 +01:00
),
'arg5' => array(
'type' => 'textfield',
2007-06-06 10:18:45 +02:00
'label' => lang('Custom eTemplate for the contactform'),
'params' => array('size' => 40),
2011-02-01 03:02:08 +01:00
'default' => 'addressbook.contactform',
),
'arg7' => array(
'type' => 'checkbox',
'label' => lang('Send emailcopy to receiver'),
'params' => array('size' => 1),
),
);
return parent::get_user_interface();
}
}