本文整理汇总了PHP中People::contact_details_add方法的典型用法代码示例。如果您正苦于以下问题:PHP People::contact_details_add方法的具体用法?PHP People::contact_details_add怎么用?PHP People::contact_details_add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类People
的用法示例。
在下文中一共展示了People::contact_details_add方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: COUNT
$address['street'] = null;
}
if (!is_null($adresse['building'])) {
$building = Maps::buildingSearch($adresse['building'], $address['street']);
if (count($building)) {
$address['building'] = $building[0]['id'];
} else {
$building = Maps::buildingNew($adresse['building'], $address['street']);
$address['building'] = $building;
}
} else {
$address['building'] = null;
}
// On lance la création de l'adresse
Maps::addressNew($person->get('id'), $address['ville'], $address['zip'], $address['street'], $address['building'], 'reel');
$person->contact_details_add($contact['MAIL']);
$person->tag_add('Sénateur PS');
$person->tag_add($contact['REGION']);
$query = $link->prepare('DELETE FROM `TABLE 30` WHERE `id` = :id');
$query->bindValue(':id', $contact['id'], PDO::PARAM_INT);
$query->execute();
}
$query = $link->query('SELECT COUNT(*) FROM `TABLE 30`');
$nb = $query->fetch(PDO::FETCH_NUM);
if ($nb[0]) {
?>
<script>
var url = 'transfert.php';
document.location.href = url;
</script>
<?php
示例2: unset
// Si aucune coordonnée n'a été entré, on supprime l'information
if (empty($coordonnee)) {
unset($reporting[$report]);
} else {
// On récupère l'identifiant de l'électeur
$electeur = explode('-', $report);
// On retraite dans le tableau initial
$reporting[$electeur[1]][$electeur[0]] = $coordonnee;
// On supprime l'ancienne information
unset($reporting[$report]);
}
}
// Pour chaque contact, on enregistre l'information
foreach ($reporting as $report => $infos) {
$contact = new People($report);
// On enregistre l'adresse mail si elle existe
if (isset($infos['email'])) {
$contact->contact_details_add($infos['email']);
}
// On regarde le type de numéro de téléphone puis on l'enregistre s'il existe
if (isset($infos['phone'])) {
$numero = preg_replace('`[^0-9]`', '', $infos['phone']);
$premiersNums = $numero[0] . $numero[1];
if ($premiersNums == 06 || $premiersNums == 07) {
$contact->contact_details_add($numero);
} else {
$contact->contact_details_add($numero);
}
}
}
Core::goPage('reporting', array('mission' => $_GET['mission'], 'rue' => $_GET['rue']), true);
示例3: People
<?php
/**
* Ajout d'une coordonnées postale à un contact
*
* PHP version 5
*
* @category Ajax
* @package LeQG
* @author Damien Senger <hi@hiwelo.co>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License 3.0
* @link http://leqg.info
*/
$data = new People($_POST['contact']);
$data->contact_details_add($_POST['coordonnees'], $_POST['type']);
示例4:
}
}
if (!empty($adresse['numero']) && !is_null($adresse['numero'])) {
$buildings = Maps::buildingSearch($adresse['numero'], $address['street']);
if (count($buildings)) {
$address['building'] = $buildings[0]['id'];
} else {
$building = Maps::buildingNew($adresse['numero'], $address['street']);
$address['building'] = $building;
}
}
Maps::addressNew($person->get('id'), $address['city'], $address['zip'], $address['street'], $address['building'], 'reel');
}
// On rajoute les coordonnées téléphoniques
if (!empty($contact['Téléphonebureau'])) {
$person->contact_details_add($contact['Téléphonebureau'], 'fixe');
}
if (!empty($contact['Téléphone2bureau'])) {
$person->contact_details_add($contact['Téléphone2bureau'], 'fixe');
}
if (!empty($contact['Téléphonedomicile'])) {
$person->contact_details_add($contact['Téléphonedomicile'], 'fixe');
}
if (!empty($contact['Téléphone2domicile'])) {
$person->contact_details_add($contact['Téléphone2domicile'], 'fixe');
}
if (!empty($contact['Télmobile'])) {
$person->contact_details_add($contact['Télmobile'], 'mobile');
}
if (!empty($contact['Adressedemessagerie'])) {
$person->contact_details_add($contact['Adressedemessagerie'], 'email');
示例5: People
<?php
require_once 'includes.php';
$link = Configuration::read('db.link');
$person = People::create();
$person = new People($person);
$person->tag_add('newsletter');
$person->contact_details_add($_POST['email']);
header('Location: http://cordery.leqg.info/mail-info.php?email=' . md5($_POST['email']) . '&action=inscription');