当前位置: 首页>>代码示例>>PHP>>正文


PHP DB_STRUCTURE_COMMUN::DB_ajouter_message方法代码示例

本文整理汇总了PHP中DB_STRUCTURE_COMMUN::DB_ajouter_message方法的典型用法代码示例。如果您正苦于以下问题:PHP DB_STRUCTURE_COMMUN::DB_ajouter_message方法的具体用法?PHP DB_STRUCTURE_COMMUN::DB_ajouter_message怎么用?PHP DB_STRUCTURE_COMMUN::DB_ajouter_message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DB_STRUCTURE_COMMUN的用法示例。


在下文中一共展示了DB_STRUCTURE_COMMUN::DB_ajouter_message方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: CONCAT

}
if ($action == 'afficher_destinataires' && $nb_ids) {
    $champs = $profil != 'parent' ? 'CONCAT(user_nom," ",user_prenom) AS texte , user_id AS valeur' : 'CONCAT(parent.user_nom," ",parent.user_prenom," (",enfant.user_nom," ",enfant.user_prenom,")") AS texte , parent.user_id AS valeur';
    $DB_TAB = DB_STRUCTURE_ADMINISTRATEUR::DB_lister_users_cibles(implode(',', $tab_ids), 'user_id AS valeur, CONCAT(user_nom," ",user_prenom) AS texte', '');
    exit(HtmlForm::afficher_select($DB_TAB, 'f_destinataires', FALSE, FALSE, '', TRUE));
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////
// Ajouter un nouveau message
// ////////////////////////////////////////////////////////////////////////////////////////////////////
if ($action == 'ajouter' && $date_debut_fr && $date_fin_fr && $message_contenu && $nb_destinataires) {
    $date_debut_mysql = convert_date_french_to_mysql($date_debut_fr);
    $date_fin_mysql = convert_date_french_to_mysql($date_fin_fr);
    if ($date_fin_mysql < $date_debut_mysql) {
        exit('Date de fin antérieure à la date de début !');
    }
    $message_id = DB_STRUCTURE_COMMUN::DB_ajouter_message($_SESSION['USER_ID'], $date_debut_mysql, $date_fin_mysql, $message_contenu, $tab_destinataires);
    // Notifications (rendues visibles ultérieurement)
    if (!$mode_discret) {
        $listing_abonnes = DB_STRUCTURE_NOTIFICATION::DB_lister_destinataires_listing_id($abonnement_ref, implode(',', $tab_destinataires));
        if ($listing_abonnes) {
            $notification_date = TODAY_MYSQL < $date_debut_mysql ? $date_debut_mysql : NULL;
            $notification_contenu = 'Message de ' . afficher_identite_initiale($_SESSION['USER_NOM'], FALSE, $_SESSION['USER_PRENOM'], TRUE, $_SESSION['USER_GENRE']) . ' :' . "\r\n\r\n" . make_lien($message_contenu, 'mail') . "\r\n";
            $tab_abonnes = explode(',', $listing_abonnes);
            foreach ($tab_abonnes as $abonne_id) {
                DB_STRUCTURE_NOTIFICATION::DB_ajouter_log_attente($abonne_id, $abonnement_ref, $message_id, $notification_date, $notification_contenu);
            }
        }
    }
    // Afficher le retour
    $destinataires_nombre = $nb_destinataires > 1 ? $nb_destinataires . ' destinataires' : $nb_destinataires . ' destinataire';
    echo '<tr id="id_' . $message_id . '" class="new">';
开发者ID:Qwaseur,项目名称:SACoche,代码行数:31,代码来源:compte_message.ajax.php


注:本文中的DB_STRUCTURE_COMMUN::DB_ajouter_message方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。