+ Reply to Thread
Page 7 of 7 FirstFirst ... 5 6 7
Results 61 to 68 of 68

Thread: advanced Adressbook

  1. #61
    oldschool's Avatar
    oldschool is offline Registered User
    Join Date
    Jul 2007
    Posts
    173
    Downloads
    8
    Uploads
    0

    Default Re: advanced Adressbook

    Thanks alot...




  2. #62
    DocNight is offline 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.

  3. #63
    ufoonline is offline Registered User
    Join Date
    Jun 2007
    Posts
    3
    Downloads
    7
    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

  4. #64
    d1msumboi is offline 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.

  5. #65
    sam121212 is offline Registered User
    Join Date
    Sep 2008
    Posts
    11
    Downloads
    5
    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

  6. #66
    glen is offline 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>"

  7. #67
    jonsjava is offline Registered User
    Join Date
    Jul 2008
    Posts
    11
    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 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.

  8. #68
    jonsjava is offline Registered User
    Join Date
    Jul 2008
    Posts
    11
    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.

+ Reply to Thread
Page 7 of 7 FirstFirst ... 5 6 7

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts