RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > Third Party Contributions > Plug-Ins

For more information about the ads and why they're here, please see the FAQ
Reply
  #61  
Old 04-02-2008, 05:27 PM
Registered User
 
Join Date: Jul 2007
Posts: 38
Downloads: 1
Uploads: 0
Default Re: advanced Adressbook

Thanks alot...



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #62  
Old 04-16-2008, 08:01 PM
Registered User
 
Join Date: Nov 2007
Posts: 8
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Hi all,

does anyone already made the stable 0.1.1 upgrade and tried the advanced adressbook?

regards,
DocNight.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #63  
Old 06-19-2008, 07:52 AM
Registered User
 
Join Date: Jun 2007
Posts: 2
Downloads: 3
Uploads: 0
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #64  
Old 06-28-2008, 10:04 AM
Registered User
 
Join Date: Jun 2008
Posts: 1
Downloads: 0
Uploads: 0
Default

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #65  
Old 09-18-2008, 12:07 AM
Registered User
 
Join Date: Sep 2008
Posts: 3
Downloads: 4
Uploads: 0
Default Version 2 Also Works

Quote:
Originally Posted by Rudy View Post
[PLUGIN] Advanced Address Book - "updated"/checked to work with 0.1stable
Give it a try. It should work.

Code:
 .......................
......................
......................................
#
# ------[ CLOSE & SAVE ]---------------------------------------------------------------------------------------------
#


#
# ------[ 7 . 0 ]----------------------------------------------------------------------------------------------------
#
# MySQL Database Update
#
# Run this code in phpMyAdmin on the database that holds the RoundCube contacts table. If you changed the contact table
# name to something different you need to adjust the following code!
.......................................
.................
.......

#
# ------[ THE END =) ]----------------------------------------------------------------------------------------------
#

That's it! You're all set. Have fun and enjoy. Thank you Helga for this essential plugin and many thanks to David Loendor
for updating it to RC1. :D
Hey Guys its work with roundcubemail version2+ also
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #66  
Old 10-20-2008, 03:25 PM
Registered User
 
Join Date: Oct 2008
Posts: 6
Downloads: 1
Uploads: 0
Default

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>"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #67  
Old 10-20-2008, 10:19 PM
Registered User
 
Join Date: Jul 2008
Posts: 10
Downloads: 0
Uploads: 0
Default

Quote:
Originally Posted by glen View Post
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 Global Address Book with additional fields and additional email addresses
now, my version removes the Global address book, but if you want that feature, look above my post.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #68  
Old 10-29-2008, 02:54 PM
Registered User
 
Join Date: Jul 2008
Posts: 10
Downloads: 0
Uploads: 0
Default

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 07:13 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community