* @package addressbook * @copyright (c) 2007 by Ralf Becker * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @version $Id$ */ require_once(EGW_INCLUDE_ROOT.'/etemplate/inc/class.uietemplate.inc.php'); /** * SiteMgr contact form for the addressbook * */ class addressbook_contactform { /** * Shows the contactform and stores the submitted data * * @param array $content=null submitted eTemplate content * @param int $addressbook=null int owner-id of addressbook to save contacts too * @param array $fields=null field-names to show * @param string $msg=null message to show after submitting the form * @param string $email=null comma-separated email addresses * @param string $tpl_name=null custom etemplate to use * @param string $subject=null subject for email * @return string html content */ function display($content=null,$addressbook=null,$fields=null,$msg=null,$email=null,$tpl_name=null,$subject=null) { //echo "

addressbook_contactform::display($content,$addressbook,".print_r($fields,true).",$msg)

\n"; $tpl = new etemplate($tpl_name ? $tpl_name : 'addressbook.contactform'); if (is_array($content)) { if (isset($content['captcha_result']) && $content['captcha'] != $content['captcha_result']) { $tpl->set_validation_error('captcha',lang('Wrong - try again ...')); } elseif ($content['submitit']) { require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.bocontacts.inc.php'); $contact = new bocontacts(); if ($content['owner']) // save the contact in the addressbook { if ($content['email_contactform']) // only necessary as long addressbook is not doing this itself { require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.addressbook_tracking.inc.php'); $tracking = new addressbook_tracking($contact); } if ($contact->save($content)) { unset($content['modified']); unset($content['modifier']); // not interesting for new entries $tracking->do_notifications($content,null); // only necessary as long addressbook is not doing this itself return '

'.$content['msg'].'

'; } else { return '

'.lang('There was an error saving your data :-(').'
'. lang('The anonymous user has probably no add rights for this addressbook.').'

'; } } else // this is only called, if we send only email and dont save it { if ($contact['email_contactform']) { require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.addressbook_tracking.inc.php'); $tracking = new addressbook_tracking($contact); } if ($tracking->do_notifications($content,null)) { return '

'.$content['msg'].'

'; } else { return '

'.lang('There was an error saving your data :-(').'
'. lang('Either the configured email addesses are wrong or the mail configuration.').'

'; } } } } else { $preserv['owner'] = $addressbook; $preserv['msg'] = $msg; $preserv['is_contactform'] = true; $preserv['email_contactform'] = $email; $preserv['subject_contactform'] = $subject; if (!$fields) $fields = array('org_name','n_fn','email','tel_work','url','note','captcha'); $custom = 1; foreach($fields as $name) { if ($name{0} == '#') // custom field { static $contact; if (is_null($contact)) { require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.bocontacts.inc.php'); $contact = new bocontacts(); } $content['show']['custom'.$custom] = true; $content['customfield'][$custom] = $name; $content['customlabel'][$custom] = $contact->customfields[substr($name,1)]['label']; ++$custom; } elseif($name == 'adr_one_locality') { if (!($content['show'][$name] = $GLOBALS['egw_info']['user']['preferences']['addressbook']['addr_format'])) { $content['show'][$name] = 'postcode_city'; } } else { $content['show'][$name] = true; } } } $content['addr_format'] = $GLOBALS['egw_info']['user']['preferences']['addressbook']['addr_format']; if ($addressbook) $preserv['owner'] = $addressbook; if ($msg) $preserv['msg'] = $msg; // a simple calculation captcha $num1 = rand(1,99); $num2 = rand(1,99); if ($num2 > $num1) // keep the result positive { $n = $num1; $num1 = $num2; $num2 = $n; } if (in_array('captcha',$fields)) { $content['captcha_task'] = sprintf('%d - %d =',$num1,$num2); $preserv['captcha_result'] = $num1-$num2; } return $tpl->exec('addressbook.addressbook_contactform.display',$content,$sel_options,$readonlys,$preserv); } }