Source for file addressbook.php
Documentation is available at addressbook.php
* Manage personal address book.
* @copyright © 1999-2006 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: addressbook.php,v 1.58.2.26 2006/10/07 11:58:42 tokul Exp $
* @subpackage addressbook
* Path for SquirrelMail required files.
/** SquirrelMail required files. */
require_once(SM_PATH .
'include/validate.php');
require_once(SM_PATH .
'functions/global.php');
require_once(SM_PATH .
'functions/display_messages.php');
require_once(SM_PATH .
'functions/addressbook.php');
require_once(SM_PATH .
'functions/strings.php');
require_once(SM_PATH .
'functions/html.php');
require_once(SM_PATH .
'functions/forms.php');
/** lets get the global vars we may need */
/* From the address form */
$value =
( isset
($values[$field]) ?
$values[$field] :
'');
$td_str =
addInput($name.
'['.
$field.
']', $value, $size)
html_tag( 'td', $label .
':', 'right', $color[4]) .
html_tag( 'td', $td_str, 'left', $color[4])
* Output form to add and modify address data
function address_form($name, $submittext, $values =
array()) {
global $color, $squirrelmail_language;
if ($squirrelmail_language ==
'ja_JP') {
' <small>' .
_("Must be unique") .
'</small>') .
'center', $color[4], 'colspan="2"')
, 'center', '', 'border="0" cellpadding="1" width="90%"') .
"\n";
' <small>' .
_("Must be unique") .
'</small>') .
'center', $color[4], 'colspan="2"')
, 'center', '', 'border="0" cellpadding="1" width="90%"') .
"\n";
* Provides list of writeable backends.
* Works only when address is added ($name='addaddr')
* @param string $name name of form
* @return string html formated backend field (select or hidden)
if ( $name !=
'addaddr' ) { return; }
if ( $abook->numbackends >
1 ) {
$backends =
$abook->get_backend_list();
$writeable_abooks=
array();
while (list
($undef,$v) =
each($backends)) {
// add each backend to array
$writeable_abooks[$v->bnum]=
$v->sname;
$writeable_abook=
$v->bnum;
if (count($writeable_abooks)>
1) {
// we have more than one writeable backend
$ret=
addSelect('backend',$writeable_abooks,null,true);
html_tag( 'td', _("Add to:"),'right', $color[4] ) .
html_tag( 'td', $ret, 'left', $color[4] )) .
"\n";
// Only one backend exists or is writeable.
'center', $color[4], 'colspan="2"')) .
"\n";
/* Create page header before addressbook_init in order to display error messages correctly. */
/* Open addressbook, with error messages on but without LDAP (the *
* second "true"). Don't need LDAP here anyway */
if($abook->localbackend ==
0) {
_("No personal address book is defined. Contact administrator."),
$form_url =
'addressbook.php';
/* Handle user's actions */
/************************************************
**************************************************/
$r =
$abook->add($addaddr, $backend);
$r =
$abook->add($addaddr, $abook->localbackend);
/* Handle error messages */
/* Remove backend name from error string */
/**********************************************
************************************************/
if ((!empty($deladdr)) &&
sizeof($sel) >
0) {
/* The selected addresses are identidied by "backend:nickname". *
* Sort the list and process one backend at the time */
for ($i =
0 ; (($i <
sizeof($sel)) &&
!$delfailed) ; $i++
) {
list
($sbackend, $snick) =
explode(':', $sel[$i]);
/* When we get to a new backend, process addresses in *
if ($prevback !=
$sbackend &&
$prevback != -
1) {
$r =
$abook->remove($subsel, $prevback);
$formerror =
$abook->error;
/* Queue for processing */
$r =
$abook->remove($subsel, $prevback);
if (!$r) { /* Handle errors */
$formerror =
$abook->error;
$defselected =
$orig_sel;
/*********************************************
* Update/modify address *
***********************************************/
/* Stage one: Copy data into form */
if (isset
($sel) &&
sizeof($sel) >
0) {
$formerror =
_("You can only edit one address at the time");
list
($ebackend, $enick) =
explode(':', $sel[0]);
$olddata =
$abook->lookup($enick, $ebackend);
/* Display the "new address" form */
"\n".
'<strong>' .
_("Update address") .
'</strong>' .
"\n",
'center', '', 'width="100%" ' );
echo
addHidden('oldnick', $olddata['nickname']).
} elseif ($doedit ==
1) {
/* Stage two: Write new data */
$r =
$abook->modify($oldnick, $newdata, $backend);
/* Handle error messages */
"\n".
'<strong><font color="' .
$color[2] .
'">' .
_("ERROR") .
': ' .
htmlspecialchars($abook->error) .
'</font></strong>' .
"\n",
'center', '', 'width="100%"' );
/* Display the "new address" form again */
"\n".
'<strong>' .
_("Update address") .
'</strong>' .
"\n",
'center', '', 'width="100%"' );
* $editaddr is set, but $sel (address selection in address listing)
* and $doedit (address edit form) are not set.
* Assume that user clicked on "Edit address" without selecting any address.
$formerror =
_("Please select address that you want to edit");
} /* end of edit stage detection */
} /* !empty($editaddr) - Update/modify address */
} /* (!empty($deladdr)) && sizeof($sel) > 0 - Delete address(es) */
} /* !empty($addaddr['nickname']) - Add new address */
// Some times we end output before forms are printed
/* =================================================================== *
* The following is only executed on a GET request, or on a POST when *
* a user is added, or when "delete" or "modify" was successful. *
* =================================================================== */
/* Display error messages */
if (!empty($formerror)) {
"\n".
'<br /><strong><font color="' .
$color[2] .
'center', '', 'width="100%"' );
/* Display the address management part */
/* Get and sort address list */
$alist =
$abook->list_addr();
usort($alist,'alistcmp');
echo
html_tag( 'p', '<a href="#AddAddress">' .
_("Add address") .
'</a>', 'center' ) .
"\n";
if ($abook->add_extra_field) {
while(list
($undef,$row) =
each($alist)) {
/* New table header for each backend */
if($prevbackend !=
$row['backend']) {
'center', '', "colspan=\"$abook_fields\"" )
html_tag( 'td', ' <br />', 'center', '', 'colspan="5"' )
html_tag( 'td', "\n" .
'<strong>' .
$row['source'] .
'</strong>' .
"\n", 'center', $color[0] )
'center', '', 'width="95%"' ) .
"\n".
html_tag( 'table', '', 'center', '', 'border="0" cellpadding="1" cellspacing="0" width="90%"' ) .
html_tag( 'th', ' ', 'left', '', 'width="1%"' ) .
'left', '', 'width="1%"' ) .
'left', '', 'width="1%"' ) .
'left', '', 'width="1%"' ) .
'left', '', 'width="1%"' ) .
($abook->add_extra_field ?
html_tag( 'th', ' ','left', '', 'width="1%"'):
''),
$prevbackend =
$row['backend'];
/* Check if this user is selected */
$selected =
in_array($row['backend'] .
':' .
$row['nickname'], $defselected);
/* Print one row, with alternating color */
$tr_bgcolor =
$color[12];
if ($squirrelmail_language ==
'ja_JP') {
echo
html_tag( 'tr', '', '', $tr_bgcolor);
if ($abook->backends[$row['backend']]->writeable) {
addCheckBox('sel[]', $selected, $row['backend'].
':'.
$row['nickname']).
'center', '', 'valign="top" width="1%"' );
'center', '', 'valign="top" width="1%"' );
echo
html_tag( 'td', ' ' .
htmlspecialchars($row['nickname']) .
' ', 'left', '', 'valign="top" width="1%" nowrap' ) .
html_tag( 'td', '', 'left', '', 'valign="top" width="1%" nowrap' ) .
' ';
echo
html_tag( 'tr', '', '', $tr_bgcolor);
if ($abook->backends[$row['backend']]->writeable) {
addCheckBox('sel[]', $selected, $row['backend'] .
':' .
$row['nickname']).
'center', '', 'valign="top" width="1%"' );
'center', '', 'valign="top" width="1%"' );
echo
html_tag( 'td', ' ' .
htmlspecialchars($row['nickname']) .
' ', 'left', '', 'valign="top" width="1%" nowrap' ) .
html_tag( 'td', '', 'left', '', 'valign="top" width="1%" nowrap' ) .
' ';
$email =
$abook->full_address($row);
// add extra column if third party backend needs it
if ($abook->add_extra_field) {
' ' .
(isset
($row['extra']) ?
$row['extra'] :
'') .
' ',
'left', '', 'valign="top" width="1%"' );
/* End of list. Close table. */
'center', '', "colspan=\"$abook_fields\"" )
} /* end of addresslist */
/* Display the "new address" form */
echo
'<a name="AddAddress"></a>' .
"\n" .
addForm($form_url, 'post', 'f_add').
html_tag( 'td', "\n".
'<strong>' .
sprintf(_("Add to %s"), $abook->localbackendname) .
'</strong>' .
"\n",
, 'center', '', 'width="95%"' ) .
"\n";
/* Add hook for anything that wants on the bottom */
Documentation generated on Sat, 07 Oct 2006 16:29:51 +0300 by phpDocumentor 1.3.0RC6