Esempio n. 1
0
 * All rights reserved.
 */
/**
 * 管理画面月額コースグループ更新ページ
 *
 * @copyright   2010 Fraise, Inc.
 * @author      norihisa ohnami
 */
require_once D_BASE_DIR . "/common/admin_common.php";
require_once $controllerOBJ->getIncludeBusinessLogic("admInclude");
// セッションオブジェクトのインスタンス
$messageSessOBJ = new ComSessionNamespace("exec_msg");
$returnSessOBJ = new ComSessionNamespace("return");
$admMonthlyCourseOBJ = AdmMonthlyCourse::getInstance();
$param = $requestOBJ->getParameterExcept($exceptArray);
$msg = $messageSessOBJ->getIterator();
// セッション変数の破棄
$messageSessOBJ->unsetAll();
$smartyOBJ->assign("msg", $msg);
// 入力項目の取得
$returnValue = $returnSessOBJ->return;
// セッション変数の破棄
$returnSessOBJ->unsetAll();
// 商品カテゴリーデータ取得
$monthlyCourseGroupData = $admMonthlyCourseOBJ->getMonthlyCourseGroupData($param["mcgid"]);
$smartyOBJ->assign("monthlyCourseGroupData", $monthlyCourseGroupData);
// 表示フラグ
$smartyOBJ->assign("isDisplay", AdmItem::$_isDisplay);
// 登録エラーで戻った場合
if ($returnValue["return_flag"]) {
    $param = $returnValue;
 */
/**
 * 管理画面サポートメール一括送信作成処理ページファイル。
 *
 * @copyright   2009 Fraise, Inc.
 * @author      mitsuhiro nakamura
 */
require_once D_BASE_DIR . "/common/admin_common.php";
require_once $controllerOBJ->getIncludeBusinessLogic("admInclude");
$param = $requestOBJ->getParameterExcept($exceptArray);
// セッションオブジェクトのインスタンス
$returnSessOBJ = new ComSessionNamespace("return");
$execMsgSessOBJ = new ComSessionNamespace("exec_msg");
$orderingSearchSessOBJ = new ComSessionNamespace("ordering_search");
// メッセージの取得
$smartyOBJ->assign("execMsg", $execMsgSessOBJ->getIterator());
// セッション変数の破棄
$execMsgSessOBJ->unsetAll();
// 入力項目の取得
$returnValue = $returnSessOBJ->return;
// セッション変数の破棄
$returnSessOBJ->unsetAll();
// 送信されたデータを設定
$mailElements["from_address"] = $param["from_address"];
$mailElements["from_name"] = $param["from_name"];
$mailElements["pc_to_address"] = $param["pc_to_address"];
$mailElements["mb_to_address"] = $param["mb_to_address"];
$mailElements["subject"] = $param["subject"];
$mailElements["text_body"] = $param["text_body"];
$tags = array("sesKey");
$POSTparam = $requestOBJ->makePostTag($tags);
Esempio n. 3
0
$data = $AdminUserProfileFlagOBJ->getUserProfileFlag($param["user_profile_flag_code"]);
// セッションオブジェクトのインスタンス
$returnSessOBJ = new ComSessionNamespace("return");
$execMsgSessOBJ = new ComSessionNamespace("exec_msg");
// メッセージの取得
$message = $execMsgSessOBJ->getIterator();
// セッション変数の破棄
$execMsgSessOBJ->unsetAll();
$smartyOBJ->assign("msg", $message);
$smartyOBJ->assign("data", $data[0]);
//get all user profile flag
$userProfileFlagList = $AdminUserProfileFlagOBJ->getUserProfileFlag();
// generate user profile code flag
$userProfileFlagCodeList = array("0" => "フラグOFF");
foreach ($userProfileFlagList as $item) {
    $userProfileFlagCodeList += array($item['code'] => $item['name']);
}
$smartyOBJ->assign("user_profile_flag_code_convert", $userProfileFlagCodeList);
$reloadTags = array("user_profile_flag_code");
$errSessOBJ = new ComSessionNamespace("err");
$errMsg = $errSessOBJ->getIterator();
$errSessOBJ->unsetAll();
$smartyOBJ->assign("errMsg", $errMsg);
$POSTparam = $requestOBJ->makePostTag($reloadTags);
$reloadParam = $requestOBJ->makePostTag($reloadTags);
$smartyOBJ->assign("POSTparam", $POSTparam);
// 画面リロード用
$smartyOBJ->assign("reloadParam", $reloadParam);
?>

 * All rights reserved.
 */
/**
 * 管理側情報定型文登録ページ。
 *
 * @copyright   2009 Fraise, Inc.
 * @author      norihisa hosoda
 */
require_once D_BASE_DIR . "/common/admin_common.php";
require_once $controllerOBJ->getIncludeBusinessLogic("admInclude");
$AdmInfoTemplateOBJ = AdmInformationTemplate::getInstance();
// セッションオブジェクトのインスタンス
$returnSessOBJ = new ComSessionNamespace("return");
$execMsgSessOBJ = new ComSessionNamespace("exec_msg");
// メッセージの取得
$message = $execMsgSessOBJ->getIterator();
// セッション変数の破棄
$execMsgSessOBJ->unsetAll();
$smartyOBJ->assign("msg", $message);
// 戻り値入力項目の取得
$registParam = $returnSessOBJ->return;
// セッション変数の破棄
$returnSessOBJ->unsetAll();
$smartyOBJ->assign("registParam", $registParam);
// bodyタグ基本設定
$htmlBodyPC = '<body>';
$htmlBodyMB = '<body link="#ffcc99" vlink="#cc9966" alink="#ffcc99" text="#ffffff" style="color:#ffffff; background:#000000;" bgcolor="#000000">' . "\n" . '<a name="top" id="top"></a>' . "\n" . '<div style="font-size:x-small; text-align:left; width:100%;">';
$smartyOBJ->assign("htmlBodyPC", htmlspecialchars($htmlBodyPC));
$smartyOBJ->assign("htmlBodyMB", htmlspecialchars($htmlBodyMB));
// 全画面表示フラグ
$smartyOBJ->assign("isAllDisplay", AdmInformationTemplate::$_isAllDisplay);
Esempio n. 5
0
<?php

/**
 * createEnd.php
 *
 * Copyright (c) 2009 Fraise, Inc.
 * All rights reserved.
 */
/**
 * 管理画面ユーザー情報作成完了ページ処理ファイル。
 *
 * @copyright   2009 Fraise, Inc.
 * @author      mitsuhiro nakamura
 */
require_once D_BASE_DIR . "/common/admin_common.php";
require_once $controllerOBJ->getIncludeBusinessLogic("admInclude");
// メッセージの取得
$execMsgSessOBJ = new ComSessionNamespace("execMsg");
// メッセージの取得
$msg = $execMsgSessOBJ->getIterator();
// セッション変数の破棄
$execMsgSessOBJ->unsetAll();
$smartyOBJ->assign("msg", $msg);