vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Validation PHP Code in Setting (https://vborg.vbsupport.ru/showthread.php?t=197072)

Bilderback 11-23-2008 10:03 PM

Validation PHP Code in Setting
 
This is driving me nuts.
Does anyone know how to use the Validation PHP Code box in a product setting?
I have a setting field as positive integer which I want to check if the size is in between 32 and 100.
If this returns false, I want to set a default value to be used in the product.
Would I have to initiate a plugin for this or is there an easy way to validate its size?
Example:
PHP Code:

if($size <= 32 || $size >100) { $size 64; } 

Thanks for any help.

Dismounted 11-24-2008 03:27 AM

The variable $data is used. As the verification is done through AJAX and only a true/false response is sent, I do not think there's a way (with the default vBulletin system) to override a setting through the verification system.

ReCom 11-24-2008 09:18 AM

Enter
Code:

return ($data >= 32 AND $data <= 100);
in that box to check if the admin enters a number between 32 and 100. Just like Dismounted wrote, I don't think you can override invalid settings.

Bilderback 11-24-2008 07:07 PM

Quote:

Originally Posted by ReCom (Post 1671857)
Enter
Code:

return ($data >= 32 AND $data <= 100);
in that box to check if the admin enters a number between 32 and 100. Just like Dismounted wrote, I don't think you can override invalid settings.

That is what I originally tried in validation which displays the default invalid value error,
yet it still allows saving and returning the $data.
Ive also tried hooking the admin_options_processing to attempt to check the value
and return default if not 32><100 but I must be missing something.
Would using the admins_options_processing enable me to rewrite the $data value
before its saved to the database or would I have to write my own query?

Dismounted 11-25-2008 04:39 AM

As you've said yourself, you will need to intercept the value before it is saved into the database.


All times are GMT. The time now is 05:52 AM.

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.01206 seconds
  • Memory Usage 1,720KB
  • 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
  • (2)bbcode_code_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
  • (5)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