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


PHP DB_STRUCTURE_COMMUN::DB_modifier_message方法代码示例

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


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

示例1: implode

    echo '</tr>';
    echo '<SCRIPT>';
    echo 'tab_destinataires[' . $message_id . ']="' . implode('_', $tab_destinataires) . '";';
    echo 'tab_msg_contenus[' . $message_id . ']="' . str_replace(array("\r\n", "\r", "\n"), array('\\r\\n', '\\r', '\\n'), html($message_contenu)) . '";';
    exit;
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////
// Modifier un message existant
// ////////////////////////////////////////////////////////////////////////////////////////////////////
if ($action == 'modifier' && $message_id && $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 !');
    }
    DB_STRUCTURE_COMMUN::DB_modifier_message($message_id, $_SESSION['USER_ID'], $date_debut_mysql, $date_fin_mysql, $message_contenu, $tab_destinataires);
    // Notifications (rendues visibles ultérieurement)
    if (!$mode_discret) {
        DB_STRUCTURE_NOTIFICATION::DB_supprimer_log_attente($abonnement_ref, $message_id);
        $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';
开发者ID:Qwaseur,项目名称:SACoche,代码行数:31,代码来源:compte_message.ajax.php


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