View Single Post
  #1  
Old 03-17-2015, 06:11 AM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default toggle admin option from frontend

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


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
Attached Images
File Type: jpg Capture.jpg (23.8 KB, 0 views)
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01112 seconds
  • Memory Usage 1,802KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (1)bbcode_html
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_attachment
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete