source: branches/feature-module-update/html/admin/mail/template.php @ 15080

Revision 15080, 1.4 KB checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7require_once("../require.php");
8
9class LC_Page {
10    var $arrSession;
11    var $list_data;
12    var $arrMagazineType;
13   
14    function LC_Page() {
15        $this->tpl_mainpage = 'mail/template.tpl';
16        $this->tpl_mainno = 'mail';
17        $this->tpl_subnavi = 'mail/subnavi.tpl';
18        $this->tpl_subno = "template";
19        $this->tpl_subtitle = 'テンプレート設定';
20    }
21}
22
23$conn = new SC_DBConn();
24$objPage = new LC_Page();
25$objView = new SC_AdminView();
26$objSess = new SC_Session();
27
28// 認証可否の判定
29sfIsSuccess($objSess);
30
31if ( $_GET['mode'] == "delete" && sfCheckNumLength($_GET['id'])===true ){
32
33    // メール担当の画像があれば削除しておく
34    $sql = "SELECT charge_image FROM dtb_mailmaga_template WHERE template_id = ?";
35    $result = $conn->getOne($sql, array($_GET["id"]));
36    if (strlen($result) > 0) {
37        @unlink(IMAGE_SAVE_DIR. $result);
38    }
39   
40    // 登録削除
41    $sql = "UPDATE dtb_mailmaga_template SET del_flg = 1 WHERE template_id = ?";
42    $conn->query($sql, array($_GET['id']));
43    sfReload();
44}
45
46
47$sql = "SELECT *, (substring(create_date, 1, 19)) as disp_date FROM dtb_mailmaga_template WHERE del_flg = 0 ORDER BY create_date DESC";
48$objPage->list_data = $list_data = $conn->getAll($sql);
49$objPage->arrMagazineType = $arrMagazineTypeAll;
50
51
52$objView->assignobj($objPage);
53$objView->display(MAIN_FRAME);
54?>
Note: See TracBrowser for help on using the repository browser.