Vielen Dank vür die schnelle Antwort.
Man sieht die Einstellung vor lauter Einstellmöglichkeiten nicht ;-)
Super!
Ich habe nur noch eine Frage:
kann man bestimmte Felder als Droplet in einer Seite des WB als Liste anzeigen lassen die einen Filter passiert haben z.B. wenn das zusätzliche Eingabefeld 5 den Wert ja oder true besitzt?
$SQL ="SELECT * FROM `".TABLE_PREFIX."mod_kit_contact` WHERE `contact_free_field_5`='true'";
$query = $database->query($SQL);
while (false !== ($contact = $query->fetchRow(MYSQL_ASSOC))) {
// output the $contact fields
print_r($contact);
}ich hab irgent ein Brett vorm Kopf.
Bis auf : eval()'d code on line 2 Fatal error: Call to a member function query() on a non-object bekomme ich nichts hin.
global $database;require_once WB_PATH.'/modules/kit/class.interface.php';
global $database;global $kitContactInterface;
$SQL ="SELECT `contact_id` FROM `".TABLE_PREFIX."mod_kit_contact`";if (null === ($query = $database->query($SQL))) return $database->get_error();
if ($query->numRows() < 1) return 'no result!';
while (false !== ($id = $query->fetchRow(MYSQL_ASSOC))) { // output the $contact fields $contact = array(); if (!$kitContactInterface->getContact($id['contact_id'], $contact)) return $kitContactInterface->getError(); echo "<pre>"; print_r($contact); echo "</pre>";}return 'Success!';