Hi all,
does anyone already made the stable 0.1.1 upgrade and tried the advanced adressbook?
regards,
DocNight.
Thanks alot...
Hi all,
does anyone already made the stable 0.1.1 upgrade and tried the advanced adressbook?
regards,
DocNight.
Hello all,
Someone want to add a group support to the address book?
It well be a nice features wich fullfil the requests of a lot of peoples!
Thank you,
Best Regards
First, I would like to thank you for this awesome hack. However, when I add or edit a contact, the information other than the four default ones (name, email, etc) do not get written to the database. For example, if i type in phone number or address, save it, and check my database via phpmyadmin, those values are not written. Anyone have any idea why? If I manually edit those values via phpmyadmin, they show up just fine. So something is wrong with writing to the database. thanks in advance.
I cant find this for the latest version of Roundcube.. anyone?
PHP Code:# FIND (line 59-64)
$out .= sprintf("<tr><td class=\"title\">%s</td><td>%s</td></tr>\n",
Q(rcube_label($col)),
$value);
}
$out .= "\n</table>";
# REPLACE with
$title = Q(rcube_label($col));
if($col == "notice"){
$out2 = "<td colspan=\"3\" width=\"100%\" valign=\"top\"><fieldset width=\"100%\" class=\"title\"><legend><b>$title</b></legend><table>\n";
$out2 .= sprintf("<tr><td>%s</td></tr>\n", $value);
$out2 .= "</table></fieldset></td>\n\n";
}
elseif($col == "p_tel" | $col == "p_fax" | $col == "p_mob" | $col == "w_tel" | $col == "w_fax" | $col == "w_mob"){
if(!$value == ""){
$contact .= sprintf("<tr><td>%s</td><td>%s</td></tr>\n",$title, $value);
}
}
elseif($col == "p_address"){
$p_address = "<td width=\"45%\" valign=\"top\"><fieldset width=\"45%\" class=\"title\"><legend><b>$title</b></legend><table>\n";
$p_address .= sprintf("<tr><td>%s</td></tr>\n", $value);
$p_address .= "</table></fieldset></td>\n\n";
}
elseif($col == "w_address"){
$w_address = "<td width=\"45%\" valign=\"top\"><fieldset width=\"45%\" class=\"title\"><legend><b>$title</b></legend><table>\n";
$w_address .= sprintf("<tr><td>%s</td></tr>\n", $value);
$w_address .= "</table></fieldset></td>\n\n";
}
elseif(!$value == "")
$data .= sprintf("<tr><td>%s</td><td>%s</td></tr>\n",$title, $value);
}
$data .= "</table></td>";
$contact .= "</table></td>";
$out .= "$data<td width=\"2%\">$contact\n\n";
$out .= "</tr><tr>";
$out .= "$p_address<td width=\"2%\">$w_address\n\n";
$out .= "</tr><tr>";
$out .= $out2;
$out .= "\n</tr></table>";
I posted a newer version at http://www.roundcubeforum.net/plug-i...dresses-2.html
now, my version removes the Global address book, but if you want that feature, look above my post.
I posted a modified version of the latest SVN release that allows for multiple e-mail addresses on this page. It will autocomplete only on the primary e-mail address, though. I'm to resolve that issue now.
There are currently 1 users browsing this thread. (0 members and 1 guests)