Initial Commit
This commit is contained in:
@@ -0,0 +1,293 @@
|
||||
<?php
|
||||
|
||||
/*===============================================*\
|
||||
|| ############################################# ||
|
||||
|| # JAKWEB.CH / Version 2.0.5 # ||
|
||||
|| # ----------------------------------------- # ||
|
||||
|| # Copyright 2022 JAKWEB All Rights Reserved # ||
|
||||
|| ############################################# ||
|
||||
\*===============================================*/
|
||||
|
||||
// Check if the file is accessed only via index.php if not stop the script from running
|
||||
if (!defined('JAK_ADMIN_PREVENT_ACCESS')) die('You cannot access this file directly.');
|
||||
|
||||
// Check if the user has access to this file
|
||||
if (!jak_get_access("faq", $jakuser->getVar("permissions"), JAK_MAIN_OP)) jak_redirect(BASE_URL);
|
||||
|
||||
// All the tables we need for this plugin
|
||||
$errors = array();
|
||||
$jaktable = 'faq_article';
|
||||
$jaktable2 = 'faq_categories';
|
||||
|
||||
$faqaccess = false;
|
||||
|
||||
switch ($page1) {
|
||||
case 'new':
|
||||
# code...
|
||||
|
||||
// Check if we need to load the faq
|
||||
if ($jakosub['faq'] == 0) jak_redirect(BASE_URL);
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$jkp = $_POST;
|
||||
|
||||
if (empty($jkp['title'])) {
|
||||
$errors['e'] = $jkl['e2'];
|
||||
}
|
||||
|
||||
if (empty($jkp['content'])) {
|
||||
$errors['e1'] = $jkl['e1'];
|
||||
}
|
||||
|
||||
if (count($errors) == 0) {
|
||||
|
||||
// Get the next order
|
||||
$last = $jakdb->get($jaktable, "dorder", ["opid" => $opcacheid, "ORDER" => ["dorder" => "DESC"]]);
|
||||
$last = $last + 1;
|
||||
|
||||
// Category ID
|
||||
$catid = 0;
|
||||
if (isset($jkp['jak_catid'])) $catid = $jkp['jak_catid'];
|
||||
|
||||
// Social Buttons
|
||||
$socbuttons = 0;
|
||||
if (isset($jkp['socialbutton'])) $socbuttons = $jkp['socialbutton'];
|
||||
|
||||
// Show on top of new ticket
|
||||
$shownt = 0;
|
||||
if (isset($jkp['shownewticket'])) $shownt = $jkp['shownewticket'];
|
||||
|
||||
$result = $jakdb->insert($jaktable, ["opid" => $opcacheid,
|
||||
"catid" => $catid,
|
||||
"lang" => $jkp['jak_lang'],
|
||||
"title" => $jkp['title'],
|
||||
"icon" => $jkp['jak_icon'],
|
||||
"content" => jak_clean_safe_userpost($_REQUEST['content']),
|
||||
"socialbutton" => $socbuttons,
|
||||
"shownewticket" => $shownt,
|
||||
"dorder" => $last,
|
||||
"active" => 1,
|
||||
"time" => $jakdb->raw("NOW()")]);
|
||||
|
||||
$lastid = $jakdb->id();
|
||||
|
||||
if (!$lastid) {
|
||||
$_SESSION["infomsg"] = $jkl['i'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
} else {
|
||||
|
||||
// Update the FAQ categories table with +1
|
||||
$jakdb->update($jaktable2, ["articles[+]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $catid]]);
|
||||
|
||||
// Tags
|
||||
jak_insert_update_tags($opcacheid, "faqid", $lastid, $jkp['tags']);
|
||||
|
||||
// Write the log file each time someone tries to login before
|
||||
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 25, $lastid, (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
||||
|
||||
$_SESSION["successmsg"] = $jkl['g14'];
|
||||
jak_redirect(JAK_rewrite::jakParseurl('faq', 'edit', $lastid));
|
||||
}
|
||||
|
||||
// Output the errors
|
||||
} else {
|
||||
|
||||
$errors = $errors;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Title and Description
|
||||
$SECTION_TITLE = $jkl["hd27"];
|
||||
$SECTION_DESC = "";
|
||||
|
||||
// Get all categories
|
||||
$JAK_CATEGORIES = $jakdb->select($jaktable2, ["id", "title"], ["opid" => $opcacheid, "ORDER" => ["dorder" => "ASC"]]);
|
||||
|
||||
// Call the language function
|
||||
$lang_files = jak_get_lang_files();
|
||||
|
||||
// Include the javascript file for results
|
||||
$js_file_footer = 'js_blog_faq.php';
|
||||
|
||||
// Load the template
|
||||
$template = 'newfaq.php';
|
||||
|
||||
break;
|
||||
case 'edit':
|
||||
// Check if the user exists
|
||||
if (is_numeric($page2) && jak_row_exist($page2, $opcacheid, $jaktable)) {
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$jkp = $_POST;
|
||||
|
||||
if (empty($jkp['title'])) {
|
||||
$errors['e'] = $jkl['e2'];
|
||||
}
|
||||
|
||||
if (empty($jkp['content'])) {
|
||||
$errors['e1'] = $jkl['e1'];
|
||||
}
|
||||
|
||||
if (count($errors) == 0) {
|
||||
|
||||
$result = $jakdb->update($jaktable, ["catid" => $jkp['jak_catid'],
|
||||
"lang" => $jkp['jak_lang'],
|
||||
"title" => $jkp['title'],
|
||||
"icon" => $jkp['jak_icon'],
|
||||
"content" => jak_clean_safe_userpost($_REQUEST['content']),
|
||||
"socialbutton" => $jkp['socialbutton'],
|
||||
"shownewticket" => $jkp['shownewticket'],
|
||||
"dorder" => $jkp['order'],
|
||||
"time" => $jakdb->raw("NOW()")], ["AND" => ["id" => $page2, "opid" => $opcacheid]]);
|
||||
|
||||
if (!$result) {
|
||||
$_SESSION["infomsg"] = $jkl['i'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
} else {
|
||||
|
||||
if ($jkp['jak_old_catid'] != $jkp['jak_catid']) {
|
||||
// Update the FAQ categories table with -1
|
||||
$jakdb->update($jaktable2, ["articles[-]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $jkp['jak_old_catid']]]);
|
||||
|
||||
// Update the FAQ categories table with +1
|
||||
$jakdb->update($jaktable2, ["articles[+]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $jkp['jak_catid']]]);
|
||||
}
|
||||
|
||||
// Tags
|
||||
jak_insert_update_tags($opcacheid, "faqid", $page2, $jkp['tags']);
|
||||
|
||||
// Write the log file each time someone tries to login before
|
||||
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 35, $page2, (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
||||
|
||||
$_SESSION["successmsg"] = $jkl['g14'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
}
|
||||
|
||||
// Output the errors
|
||||
} else {
|
||||
|
||||
$errors = $errors;
|
||||
}
|
||||
|
||||
}
|
||||
// Title and Description
|
||||
$SECTION_TITLE = $jkl["hd28"];
|
||||
$SECTION_DESC = "";
|
||||
|
||||
// Get all categories
|
||||
$JAK_CATEGORIES = $jakdb->select($jaktable2, ["id", "title"], ["opid" => $opcacheid, "ORDER" => ["dorder" => "ASC"]]);
|
||||
|
||||
// Call the language function
|
||||
$lang_files = jak_get_lang_files();
|
||||
|
||||
// Get the data
|
||||
$JAK_FORM_DATA = jak_get_data($page2, $opcacheid, $jaktable);
|
||||
|
||||
// Include the javascript file for results
|
||||
$js_file_footer = 'js_blog_faq.php';
|
||||
|
||||
// Load the template
|
||||
$template = 'editfaq.php';
|
||||
|
||||
} else {
|
||||
$_SESSION["errormsg"] = $jkl['i3'];
|
||||
jak_redirect(JAK_rewrite::jakParseurl('faq'));
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
||||
// Check if we need to load the faq
|
||||
if ($jakosub['faq'] == 1) {
|
||||
|
||||
// We give access
|
||||
$faqaccess = true;
|
||||
|
||||
// Let's go on with the script
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$jkp = $_POST;
|
||||
|
||||
if (isset($jkp['action']) && $jkp['action'] == "delete") {
|
||||
|
||||
if (!JAK_USERID || !JAK_SUPERADMINACCESS) jak_redirect(BASE_URL);
|
||||
|
||||
if (isset($jkp['jak_delete_faqs'])) {
|
||||
|
||||
$delartic = $jkp['jak_delete_faqs'];
|
||||
|
||||
for ($i = 0; $i < count($delartic); $i++) {
|
||||
$delart = $delartic[$i];
|
||||
$uidacc = explode(":#:", $delart);
|
||||
|
||||
// Delete the FAQ Article
|
||||
$jakdb->delete($jaktable, ["AND" => ["id" => $uidacc[0], "opid" => $opcacheid]]);
|
||||
|
||||
// Update the FAQ categories table with -1
|
||||
$jakdb->update($jaktable2, ["articles[-]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $uidacc[2]]]);
|
||||
|
||||
// Write the log file each time someone tries to login before
|
||||
JAK_base::jakWhatslog('', $opcacheid, JAK_USERID, 0, 26, $uidacc[0], (isset($_COOKIE['WIOgeoData']) ? $_COOKIE['WIOgeoData'] : ''), $jakuser->getVar("username"), $_SERVER['REQUEST_URI'], $ipa, $valid_agent);
|
||||
|
||||
}
|
||||
|
||||
$_SESSION["successmsg"] = $jkl['g14'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
}
|
||||
|
||||
$_SESSION["errormsg"] = $jkl['i3'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
|
||||
}
|
||||
|
||||
if (isset($jkp['action']) && $jkp['action'] == "status") {
|
||||
|
||||
if (isset($jkp['jak_delete_faqs'])) {
|
||||
|
||||
$delartic = $jkp['jak_delete_faqs'];
|
||||
|
||||
for ($i = 0; $i < count($delartic); $i++) {
|
||||
$statusu = $delartic[$i];
|
||||
$uidacc = explode(":#:", $statusu);
|
||||
|
||||
// Update row
|
||||
if ($uidacc[1] == 1) {
|
||||
$jakdb->update($jaktable, ["active" => 0], ["AND" => ["id" => $uidacc[0], "opid" => $opcacheid]]);
|
||||
// Update the FAQ categories table with -1
|
||||
$jakdb->update($jaktable2, ["articles[-]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $uidacc[2]]]);
|
||||
} else {
|
||||
$jakdb->update($jaktable, ["active" => 1], ["AND" => ["id" => $uidacc[0], "opid" => $opcacheid]]);
|
||||
$jakdb->update($jaktable2, ["articles[+]" => 1], ["AND" => ["opid" => $opcacheid, "id" => $uidacc[2]]]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$_SESSION["successmsg"] = $jkl['g14'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
}
|
||||
|
||||
|
||||
$_SESSION["successmsg"] = $jkl['g14'];
|
||||
jak_redirect($_SESSION['LCRedirect']);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// FAQ's
|
||||
$totalAll = 0;
|
||||
|
||||
// Get the totals
|
||||
$totalAll = $jakdb->count($jaktable, ["opid" => $opcacheid]);
|
||||
|
||||
// Title and Description
|
||||
$SECTION_TITLE = $jkl["hd1"];
|
||||
$SECTION_DESC = "";
|
||||
|
||||
// Include the javascript file for results
|
||||
$js_file_footer = 'js_faq.php';
|
||||
|
||||
// Call the template
|
||||
$template = 'faq.php';
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user