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
  #1  
Old 10-12-2006, 09:33 AM
Registered User
 
Join Date: Oct 2006
Posts: 13
Downloads: 0
Uploads: 0
Default advanced Adressbook

hi,

sorry for my Bad English. I'm from Germany

her my advanced Adressbook:

Screen + Download:
Attached Images
File Type: png edit.png (14.8 KB, 245 views)
File Type: png show.png (11.6 KB, 308 views)
Attached Files
File Type: zip adanced_adressbook.zip (7.4 KB, 48 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 10-12-2006, 01:04 PM
Registered User
 
Join Date: Oct 2006
Posts: 6
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

A sligt modification in this Plug-In:

- Translated it to english
- Made it like a "How To"

Code:
#
# Open: program/localization/en_GB/labels.inc 
#

# Find: (line: 149)

// address boook

# After add:

$labels['firm']  = 'Organisation';
$labels['position']  = 'Position';
$labels['p_tel']  = 'Telephone';
$labels['p_fax']  = 'Fax';
$labels['p_mob']  = 'Mobile';
$labels['p_address']  = 'Address';
$labels['w_tel']  = 'Business Telephone';
$labels['w_fax']  = 'Business Fax';
$labels['w_mob']  = 'Business Mobile';
$labels['w_address']  = 'Business Address';
$labels['notice']  = 'Notice';

#
# Open: program/localization/nl_NL/labels.inc 
#

# Find: (line: 149)

// address book

# After add:

$labels['firm']  = 'Organistatie';
$labels['position']  = 'Functie';
$labels['p_tel']  = 'Telefoon';
$labels['p_fax']  = 'Fax';
$labels['p_mob']  = 'GSM';
$labels['p_address']  = 'Adres';
$labels['w_tel']  = 'Zakelijk Telefoon';
$labels['w_fax']  = 'Zakelijk Fax';
$labels['w_mob']  = 'Zakelijk GSM';
$labels['w_address']  = 'Zakelijk Adres';
$labels['notice']  = 'Opmerkingen';

#
# Open: program/localization/de_DE/labels.inc 
#

# Find: (line: 149)

// address book

# After add:

$labels['firm']  = 'Organisation';
$labels['position']  = 'Position';
$labels['p_tel']  = 'Telefon Privat';
$labels['p_fax']  = 'Fax Privat';
$labels['p_mob']  = 'Funk Privat';
$labels['p_address']  = 'Adresse Privat';
$labels['g_tel']  = 'Telefon Geschäftlich';
$labels['g_fax']  = 'Fax Geschäftlich';
$labels['g_mob']  = 'Funk Geschäftlich';
$labels['w_address']  = 'Adresse Geschäftlich';
$labels['notice']  = 'Bemerkungen';

#
# Run in PhpMyAdmin:
#

 ALTER TABLE `contacts` ADD `firm` VARCHAR(128) NOT NULL ;
 ALTER TABLE `contacts` ADD `position` VARCHAR(50) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_tel` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_fax` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `w_tel` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_fax` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `notice` TEXT NOT NULL;

#
# Open: program/steps/addressbook/edit.inc
#

# Find: (line: 68)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

# Find: (line: 72)

  $title = rcube_label($col);

# After add:

	if($col == "notice"){
		$typ = "textarea";
	 	$attrib['rows'] = "8";
		$attrib['size'] = "70";
	}
	elseif($col == "p_address" | $col == "w_address"){
		$typ = "textarea";
	 	$attrib['rows'] = "4";
		$attrib['size'] = "50";
	}
	else{
		$typ = "text";
	}

# Find: (line: 86)

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib);

# Replace with:

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib, $typ);

#
# Open: program/steps/addressbook/save.inc
#

# Find: (line: 31)

$a_save_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

$a_save_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

#
# Open: program/steps/addressbook/show.inc
#

# Find: (line: 54)

 $out = "<table>\n\n";

# After add:

 	$data ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Data</b></legend><table>\n\n";
 	$contact ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Contact</b></legend><table>\n\n"; 

# Find: (line: 58)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_adresse', 'w_tel', 'w_fax', 'w_mob', 'g_adresse', 'notice');

# Find: (line: 71)

  $out .= sprintf("<tr><td class=\"title\">%s</td><td>%s</td></tr>\n", $title, $value);
  }


 $out .= "\n</table>";

# Replace with:

	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";
	}
	else{
		if(!$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>";
Credits stay for: Helga!

Peace.
Attached Files
File Type: txt AdvancedAddresbook.txt (5.8 KB, 160 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 10-20-2006, 04:08 PM
Registered User
 
Join Date: Oct 2006
Posts: 7
Downloads: 0
Uploads: 0
Send a message via ICQ to KingOfN00bz Send a message via MSN to KingOfN00bz Send a message via Yahoo to KingOfN00bz
Default Re: advanced Adressbook

Well, I'd translate the english "Mobile" with "Mobil" in german instead of "Funk":

Code:
#
# Open: program/localization/en_GB/labels.inc  
#

# Find: (line: 149)

// address boook

# After add:

$labels['firm']   = 'Organisation';
$labels['position']   = 'Position';
$labels['p_tel']   = 'Telephone';
$labels['p_fax']   = 'Fax';
$labels['p_mob']   = 'Mobile';
$labels['p_address']   = 'Address';
$labels['w_tel']   = 'Business Telephone';
$labels['w_fax']   = 'Business Fax';
$labels['w_mob']   = 'Business Mobile';
$labels['w_address']   = 'Business Address';
$labels['notice']   = 'Notice';

#
# Open: program/localization/nl_NL/labels.inc  
#

# Find: (line: 149)

// address book

# After add:

$labels['firm']   = 'Organistatie';
$labels['position']   = 'Functie';
$labels['p_tel']   = 'Telefoon';
$labels['p_fax']   = 'Fax';
$labels['p_mob']   = 'GSM';
$labels['p_address']   = 'Adres';
$labels['w_tel']   = 'Zakelijk Telefoon';
$labels['w_fax']   = 'Zakelijk Fax';
$labels['w_mob']   = 'Zakelijk GSM';
$labels['w_address']   = 'Zakelijk Adres';
$labels['notice']   = 'Opmerkingen';

#
# Open: program/localization/de_DE/labels.inc  
#

# Find: (line: 149)

// address book

# After add:

$labels['firm']   = 'Organisation';
$labels['position']   = 'Position';
$labels['p_tel']   = 'Telefon Privat';
$labels['p_fax']   = 'Fax Privat';
$labels['p_mob']   = 'Mobil Privat';
$labels['p_address']   = 'Adresse Privat';
$labels['g_tel']   = 'Telefon Geschäftlich';
$labels['g_fax']   = 'Fax Geschäftlich';
$labels['g_mob']   = 'Mobil Geschäftlich';
$labels['w_address']   = 'Adresse Geschäftlich';
$labels['notice']   = 'Bemerkungen';

#
# Run in PhpMyAdmin:
#

 ALTER TABLE `contacts` ADD `firm` VARCHAR(128) NOT NULL ;
 ALTER TABLE `contacts` ADD `position` VARCHAR(50) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_tel` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_fax` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `w_tel` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_fax` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `notice` TEXT NOT NULL;

#
# Open: program/steps/addressbook/edit.inc
#

# Find: (line: 68)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

# Find: (line: 72)

  $title = rcube_label($col);

# After add:

	if($col == "notice"){
		$typ = "textarea";
	 	$attrib['rows'] = "8";
		$attrib['size'] = "70";
	}
	elseif($col == "p_address" | $col == "w_address"){
		$typ = "textarea";
	 	$attrib['rows'] = "4";
		$attrib['size'] = "50";
	}
	else{
		$typ = "text";
	}

# Find: (line: 86)

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib);

# Replace with:

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib, $typ);

#
# Open: program/steps/addressbook/save.inc
#

# Find: (line: 31)

$a_save_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

$a_save_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

#
# Open: program/steps/addressbook/show.inc
#

# Find: (line: 54)

 $out = "<table>\n\n";

# After add:

 	$data ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Data</b></legend><table>\n\n";
 	$contact ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Contact</b></legend><table>\n\n"; 

# Find: (line: 58)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_adresse', 'w_tel', 'w_fax', 'w_mob', 'g_adresse', 'notice');

# Find: (line: 71)

  $out .= sprintf("<tr><td class=\"title\">%s</td><td>%s</td></tr>\n", $title, $value);
  }


 $out .= "\n</table>";

# Replace with:

	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";
	}
	else{
		if(!$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
  #4  
Old 10-30-2006, 11:43 PM
Registered User
 
Join Date: Oct 2006
Posts: 17
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Swedish

Code:
#
# Open: program/localization/se_SE/labels.inc  
#

# Find: (line: 149)

// address boook

# After add:

$labels['firm']   = 'Organisation';
$labels['position']   = 'Position';
$labels['p_tel']   = 'Telefon';
$labels['p_fax']   = 'Fax';
$labels['p_mob']   = 'Mobil';
$labels['p_address']   = 'Adress';
$labels['w_tel']   = 'Telefon arbete';
$labels['w_fax']   = 'Fax arbete';
$labels['w_mob']   = 'Mobil arbete';
$labels['w_address']   = 'Adress arbete';
$labels['notice']   = 'Anteckning';

#

#
# Run in PhpMyAdmin:
#

 ALTER TABLE `contacts` ADD `firm` VARCHAR(128) NOT NULL ;
 ALTER TABLE `contacts` ADD `position` VARCHAR(50) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_tel` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_fax` VARCHAR(30) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `p_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `w_tel` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_fax` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_mob` VARCHAR(20) NOT NULL ;
 ALTER TABLE `contacts` ADD `w_address` TEXT NOT NULL;
 ALTER TABLE `contacts` ADD `notice` TEXT NOT NULL;

#
# Open: program/steps/addressbook/edit.inc
#

# Find: (line: 68)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

# Find: (line: 72)

  $title = rcube_label($col);

# After add:

	if($col == "notice"){
		$typ = "textarea";
	 	$attrib['rows'] = "8";
		$attrib['size'] = "70";
	}
	elseif($col == "p_address" | $col == "w_address"){
		$typ = "textarea";
	 	$attrib['rows'] = "4";
		$attrib['size'] = "50";
	}
	else{
		$typ = "text";
	}

# Find: (line: 86)

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib);

# Replace with:

  $value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib, $typ);

#
# Open: program/steps/addressbook/save.inc
#

# Find: (line: 31)

$a_save_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

$a_save_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

#
# Open: program/steps/addressbook/show.inc
#

# Find: (line: 54)

 $out = "<table>\n\n";

# After add:

 	$data ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Data</b></legend><table>\n\n";
 	$contact ="<td width=\"45%\" valign=\"top\">\n<fieldset width=\"45%\" class=\"title\"><legend><b>Contact</b></legend><table>\n\n"; 

# Find: (line: 58)

 $a_show_cols = array('name', 'firstname', 'surname', 'email');

# Replace with:

 $a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_adresse', 'w_tel', 'w_fax', 'w_mob', 'g_adresse', 'notice');

# Find: (line: 71)

  $out .= sprintf("<tr><td class=\"title\">%s</td><td>%s</td></tr>\n", $title, $value);
  }


 $out .= "\n</table>";

# Replace with:

	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";
	}
	else{
		if(!$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 like smaller boxes so I added this:

Code:
	if($col == "notice"){
		$typ = "textarea";
	 	$attrib['rows'] = "2";
		$attrib['size'] = "40";
	}
	elseif($col == "p_address" | $col == "w_address"){
		$typ = "textarea";
	 	$attrib['rows'] = "3";
		$attrib['size'] = "40";
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 12-17-2006, 03:31 PM
Registered User
 
Join Date: Oct 2006
Posts: 84
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Can we add this to the next SVN?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 12-17-2006, 08:01 PM
Registered User
 
Join Date: Oct 2006
Posts: 17
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

We'll you're free to use my translation. As for the code you'll have to ask helga.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 12-20-2006, 02:26 PM
Registered User
 
Join Date: Oct 2006
Posts: 13
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Quote:
Originally Posted by seansan
Can we add this to the next SVN?
yes
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 12-20-2006, 09:39 PM
Registered User
 
Join Date: Jul 2006
Posts: 16
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Hello... I think I got most of what I needed to copy/paste and change and run on phpMyAdmin, but I went wrong somewhere and lost my address book I did have. So I guess what I did was blank out my entire contacts list. Which is fine for now. I can always replace that. But I just don't know where I went wrong.

Would there be a security isssue if the entire code for each file was put out there for us to just copy the entire file and paste it into our own and save? Then go to our phpMyAdmin and run... I'm not even sure how to do that part. LOL. (Yeah.. amatuer over here. But I do manage to learn enough to want to get myself into more trouble.)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 01-12-2007, 12:19 AM
Registered User
 
Join Date: Jan 2007
Posts: 9
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

A couple of mistakes in the English version:

program/steps/addressbook/show.inc

line 58 was:

$a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_adresse', 'w_tel', 'w_fax', 'w_mob', 'g_adresse', 'notice');

should be:

$a_show_cols = array('name', 'firstname', 'surname', 'email', 'firm', 'position', 'p_tel', 'p_fax', 'p_mob', 'p_address', 'w_tel', 'w_fax', 'w_mob', 'w_address', 'notice');

This only caused the addresses to not show, no biggie but thought you should know.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 02-09-2007, 10:30 AM
Registered User
 
Join Date: Feb 2007
Posts: 9
Downloads: 0
Uploads: 0
Default Re: advanced Adressbook

Has this functionality been added to the latest version (in SVN) already?
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 06:27 AM.


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