form = "wmform"; $pst->page = "wmessage.php?create"; $pst->id = "admin_wmessage"; require_once("auth.php"); $pst->save_preset(); // save and render result require_once(e_HANDLER.'form_handler.php'); require_once(e_HANDLER.'userclass_class.php'); require_once(e_HANDLER."ren_help.php"); $rs = new form; $frm = new e_form; $action == ''; if (e_QUERY) { $tmp = explode('.', e_QUERY); $action = $tmp[0]; $sub_action = varset($tmp[1], ''); $id = varset($tmp[2], 0); unset($tmp); } if($_POST) { $e107cache->clear("wmessage"); } if (isset($_POST['wm_update'])) { $data = $tp->toDB($_POST['data']); $wm_title = $tp->toDB($_POST['wm_caption']); $wmId = intval($_POST['wm_id']); welcome_adminlog('02', $wmId, $wm_title); $message = ($sql->db_Update("generic", "gen_chardata ='{$data}',gen_ip ='{$wm_title}', gen_intdata='".$_POST['wm_active']."' WHERE gen_id=".$wmId." ")) ? LAN_UPDATED : LAN_UPDATED_FAILED; } if (isset($_POST['wm_insert'])) { $wmtext = $tp->toDB($_POST['data']); $wmtitle = $tp->toDB($_POST['wm_caption']); welcome_adminlog('01', 0, $wmtitle); $message = ($sql->db_Insert("generic", "0, 'wmessage', '".time()."', ".USERID.", '{$wmtitle}', '{$_POST['wm_active']}', '{$wmtext}' ")) ? LAN_CREATED : LAN_CREATED_FAILED ; } if (isset($_POST['updateoptions'])) { $changed = FALSE; foreach (array('wm_enclose','wmessage_sc') as $opt) { $temp = intval($_POST[$opt]); if ($temp != $pref[$opt]) { $pref[$opt] = $temp; $changed = TRUE; } } if ($changed) { save_prefs(); welcome_adminlog('04', 0, $pref['wm_enclose'].', '.$pref['wmessage_sc']); $message = LAN_SETSAVED; } } if (isset($_POST['main_delete'])) { $del_id = array_keys($_POST['main_delete']); welcome_adminlog('03', $wmId, ''); $message = ($sql->db_Delete("generic", "gen_id='".$del_id[0]."' ")) ? LAN_DELETED : LAN_DELETED_FAILED ; } if (isset($message)) { $ns->tablerender("", "
".$message."
"); } // Show Existing ------- if ($action == "main" || $action == "") { if ($wm_total = $sql->db_Select("generic", "*", "gen_type='wmessage' ORDER BY gen_id ASC")) { $wmList = $sql->db_getList(); $text = $rs->form_open('post', e_SELF, 'myform_wmessage', '', ''); $text .= "
"; foreach($wmList as $row) { $text .= " "; } $text .= "
ID ".WMLAN_02." ".WMLAN_03." ".LAN_OPTIONS."
".$row['gen_id']." ".strip_tags($tp->toHTML($row['gen_ip']))." ".r_userclass_name($row['gen_intdata'])." ".ADMIN_EDIT_ICON."
"; $text .= $rs->form_close(); } else { $text .= "
".WMLAN_09."
"; } $ns->tablerender(WMLAN_00, $text); } // Create and Edit if ($action == "create" || $action == "edit") { if ($sub_action == "edit") { $sql->db_Select("generic", "gen_intdata, gen_ip, gen_chardata", "gen_id = $id"); $row = $sql->db_Fetch(); } if ($sub_action != 'edit') { $preset = $pst->read_preset("admin_wmessage"); if (is_array($preset)) { extract($preset); } } $text = "
"; $text .= " "; $text .= "
".WMLAN_10." toForm($row['gen_ip'])."\" />
".WMLAN_04."
"; $text .= display_help("helpb", "admin"); $text .= "
".WMLAN_03." ".r_userclass("wm_active", $row['gen_intdata'], "off", "public,guest,nobody,member,admin,classes")."
"; $text .= "
"; if($sub_action == "edit") { $text .= $frm->admin_button('wm_update', LAN_UPDATE, 'update'); } else { $text .= $frm->admin_button('wm_insert', LAN_CREATE); } $text .= ""; $text .= "
"; $ns->tablerender(WMLAN_01, $text); } if ($action == "opt") { global $pref, $ns; $text = "
\n
".WMLAN_05."
".WMLAN_06."
". (varset($pref['wm_enclose'], 0) ? "" : "")."
".WMLAN_07." ". (varset($pref['wmessage_sc'], 0) ? "" : "")."
"; $text .= $frm->admin_button('updateoptions', LAN_SAVE); $text .= "
"; $ns->tablerender(WMLAN_00.": ".LAN_PREFS, $text); } function wmessage_adminmenu() { global $action; if ($action == "") { $action = "main"; } $var['main']['text'] = WMLAN_00; $var['main']['link'] = e_SELF; $var['create']['text'] = WMLAN_01; $var['create']['link'] = e_SELF."?create"; $var['opt']['text'] = LAN_PREFS; $var['opt']['link'] = e_SELF."?opt"; show_admin_menu(LAN_OPTIONS, $action, $var); } require_once("footer.php"); // Log event to admin log function welcome_adminlog($msg_num='00', $id=0, $woffle='') { global $pref, $admin_log; // if (!varset($pref['admin_log_log']['admin_welcome'],0)) return; $msg = ''; if ($id) $msg = 'ID: '.$id; if ($woffle) { if ($msg) $msg .= '[!br!]'; $msg .= $woffle; } $admin_log->log_event('WELCOME_'.$msg_num,$msg,E_LOG_INFORMATIVE,''); } ?>