vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need help with product coding (https://vborg.vbsupport.ru/showthread.php?t=173110)

almannai 03-15-2008 04:07 PM

Need help with product coding
 
I'm creating a vb product and having this scenario which i don't know how to do it.

In the product there is two textbox options that the administrator can alter their values. The first box got a values like 3,4,7,...,100 and the second can take any integer number like 2.

A variable x in the product should start with the first number in the first textbox which is 3. The second textbox represent a time in hours where each time the system time elapsed that time the variable x will jump to the next value of the first textbox which is 4 in the example above and so on until it reaches 100 then it will get back to value 3.

regards,

Opserty 03-15-2008 05:53 PM

You need to create a scheduled task that runs once an hour then use some PHP along the lines of:
PHP Code:

// You need to create a setting field that holds the current value
// You don't really need this line I just added to make it easier to see what is going on below
$curval =& $vbulletin->options['settingcurval']; 

// Explode the comma seperated values into array
$settinglist explode(','$vbulletin->options['varsettingname']);  

$curkey array_search($curval$settinglist);

// Move the key along one
$curkey++;

// Set the new value
$curval $settinglist[$curkey];

// RUN A QUERY TO UPDATE SETTINGS TABLE 
// To update the $curval into the database. 

// Includes adminfunctions.php
require_once('/includes/adminfunctions.php');

// Update the datastore
build_options(); 

Something like that I think should work, there might be a better way to do it. But that is the way I would have done it anyway :p

almannai 03-16-2008 07:53 AM

Thanks Opserty for your reply but the problem I don't know how to
create a scheduled task for the plugin or product?:o

I tried to search the forum to see how but to many posts to find what i need.

Dismounted 03-16-2008 08:45 AM

Admin CP > Scheduled Task > Add New Task?

almannai 03-16-2008 10:13 AM

Quote:

Originally Posted by Dismounted (Post 1465952)
Admin CP > Scheduled Task > Add New Task?

Thanks for the reply.

But I don't get it! this is ok for my forum but how to distribute the corn with the product files to be used by other vb forums.

Also what is the line in code to check if number of hours had elapsed in the corn php file

something like
if((timenow-lasttimesaved)>numberofhours){
lasttimesaved=timenow;
do something...
}

Thanks for your time

Dismounted 03-17-2008 06:22 AM

Have you turned on debug mode, attached the task to your product, and export the product like that?

almannai 03-17-2008 02:56 PM

Ok I got this task working but how to read a variable like $curval in the product templates? It always returns null!

Opserty 03-17-2008 03:20 PM

PHP Code:

// RUN A QUERY TO UPDATE SETTINGS TABLE 
// To update the $curval into the database. 

Make sure you do that bit.

Then run build_options(). Then you should be able to read curval from $vbulletin->options array.

Bear in mind this is just a rough guide to the procedure to follow, it is by no means a work example. You will need to refine it appropriately.

almannai 03-17-2008 04:29 PM

Quote:

Originally Posted by Opserty (Post 1467074)
PHP Code:

// RUN A QUERY TO UPDATE SETTINGS TABLE 
// To update the $curval into the database. 


How to do it? I don't know what is the settings table and never done it before...

almannai 03-19-2008 10:16 AM

Anybody has any clue on how to solve this issue? Hint , example...


All times are GMT. The time now is 04:55 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.01144 seconds
  • Memory Usage 1,739KB
  • 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_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete