vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   toggle admin option from frontend (https://vborg.vbsupport.ru/showthread.php?t=317807)

Dr.CustUmz 03-17-2015 06:11 AM

toggle admin option from frontend
 
1 Attachment(s)
i have got this working using
Code:

build_options();
in my php code

but i have a major issue, when i toggle it, i get a fatal user error i cant solve. im not changing any other options so idk what would cause this.

product attached in 2nd post
im trying to create a simple toggle for turning a plugin on or off from the front end.

it looks a little like this.

the toggle:
HTML Code:

<if condition="$vboptions[setting_name] == 1">
  <a href="#" onclick="setting_off()">ON</a>
<else />
  <a href="#" onclick="setting_on()">OFF</a>
</if>

the js: (requires jQuery)
Code:

function setting_off(){
  $.ajax({
    type: "GET", url: "?do=settingoff"
  });
}
function setting_on(){
  $.ajax({
    type: "GET", url: "?do=settingon"
  });
}

the php: (external, and i do include global)
PHP Code:

if ($_GET['do'] == 'settingon'){
  
$vbulletin->db->query("
    UPDATE `" 
TABLE_PREFIX "setting`
    SET value='1'
    WHERE value=0
  "
);
}
// ##### Set Off #######
if ($_GET['do'] == 'settingoff'){
  
$vbulletin->db->query("
    UPDATE `" 
TABLE_PREFIX "setting`
    SET value='0'
    WHERE value=1
  "
);


this all works just fine and dandy, my issue is even though it switches the status of the product, i still have to go into the admincp options and hit save before it really applies (even though before i hit save its already switched) if that makes since...

the href just switches this
https://vborg.vbsupport.ru/attachmen...1&d=1426576191

yet i actually have to come here and hit save before it really applies.

any ideas how to avoid that process so my href takes care of all of that


important addition!
when i hit save here it seems to be affecting something else also and i have to breakout the tools.php to fix it
Quote:

Fatal User Error: The requested language does not exist, reset via tools.php. in ....\includes\functions.php on line 1417

Dr.CustUmz 03-17-2015 07:02 AM

1 Attachment(s)
attached product, someone please help =(

DO NOT USE THIS ON A LIVE SITE YOU RISK THE CHANCE OF RUINING YOUR DB!!!!!!

kh99 03-20-2015 10:27 AM

Are you still working on this? I think the problem is that your UPDATE query sets all options that had a setting of 0 to 1. What you want is something like
Code:

UPDATE setting SET value=0 WHERE varname='drc_fl'

Dr.CustUmz 03-20-2015 03:40 PM

i got it all working already, went about it without ajax and i caught that mysql error, thanks though kev.


All times are GMT. The time now is 06:17 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01735 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete