Source for file det.php
Documentation is available at det.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
//////////// Check Inclusion de pages ////////////
include_once("../lib/lib_common.php");
include_once(themePath('../user/'. SQL. '.inc.php'));
if (isset ($_GET['id'])) $id = $_GET['id'];
if (isset ($_POST['id'])) $id = $_POST['id'];
// we get logged-in user email to send a newsletter test
$user_email = $user[0]['profile_email'];
$result = $sql_object->DBSelect($req_det);
if ($result == 0 || count($result) != 1) exit;
$display_title = formatText($result[0]['newsletter_title'], '2HTML');
$display_user = formatText($result[0]['user_login'], '2HTML');
$display_date_crea = $result[0]['newsletter_date_crea_display'];
$display_last_modify = $result[0]['newsletter_last_modify_display'];
$newsletter_status = $result[0]['newsletter_statut'];
$newsletter_owner= $result[0]['newsletter_posted_by'];
if ($result[0]['newsletter_published_date_display'] == '01-01-0001') $display_published_date = _t('statut','draft');
else $display_published_date = $result[0]['newsletter_published_date_display'];
$link_sup = $rub_link . "&todo=sup&id=";
$link_mod = $rub_link . "&todo=mod&id=";
<li><a href="index.php" class="chemin_home"> <?php echo _t('way','home'); ?>
<li><a href=" <?php echo $rub_link; ?>" id="chemin_ <?php echo $rub; ?>"
class="chemin_rub"> <?php echo _t('menu','newsletter'); ?> </a></li>
<li><span> <?php echo formatNavTitle(_t('newsletter','det') . " : " . $display_title); ?></span>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php
include_once($dir . "/menurub.php");
if($newsletter_status!= 'P') {
echo '<a class="ico_send" href="#" id="send_test" title="'. sprintf(_t('newsletter','send_test'), $user_email). '"></a>';
echo "\t<a href=\"" . $link_sup . $id . "\" class=\"ico_sup2\" title=\"" . _t('newsletter','sup') . "\"></a>\n";
echo "\t<a href=\"" . $link_mod . $id . "\" class=\"ico_mod2\" title=\"" . _t('newsletter','mod') . "\"></a>\n";
echo "<dl class=\"dl3\">\n";
echo "<dt>" . _t('newsletter','title') . "</dt>\n";
echo "<dd>" . $display_title . "</dd>\n";
echo "<dt>" . _t('newsletter','body') . " :</dt>\n";
echo "<dd>" . $display_body . "</dd>\n";
echo "<dt>" . _t('newsletter','author') . " :</dt>\n";
echo '<dd><a href="?rub=user&todo=det&id='. $newsletter_owner. '">' . $display_user . '</a></dd>'. END_LINE;
echo "<dt>" . _t('statut','published_on') . "</dt>\n";
echo "<dd>" . $display_published_date . "</dd>\n";
echo "<dt>" . _t('divers','date_crea') . "</dt>\n";
echo "<dd>" . $display_date_crea . "</dd>\n";
echo "<dt>" . _t('divers','last_modify') . "</dt>\n";
echo "<dd>" . $display_last_modify . "</dd>\n";
echo "<dt>" . _t('divers','statut') . "</dt>\n";
echo "<dd>" . $display_statut . "</dd>\n";
<?php include_once($dir . "/help.php");
<script type="text/javascript">
$("a#send_test").click(function() {
var url = ' <?php echo '../newsletter/_ajax_send.php?id='. $id. '&user_email='. $user_email; ?>';
humane.info('<span class="loading"> <\/span>' + ' <?php echo _t('newsletter', 'sending_mail'); ?>');
humane.success(data.msg);
|