vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   vBulletin CMS Widgets - Events widget (https://vborg.vbsupport.ru/showthread.php?t=265941)

stationar 06-30-2011 12:35 PM

Tagged. Will wait for birthdays. They are the only events on my forum.

tomsch 06-30-2011 03:24 PM

Quote:

Originally Posted by stationar (Post 2215053)
Tagged. Will wait for birthdays. They are the only events on my forum.

birthday widget getting close

tomsch 06-30-2011 03:25 PM

Quote:

Originally Posted by toxin (Post 2214594)
It's working fine on 4.1.4, except it doesn't show recurring events very well.

I have created a recurring event. The range is starting Jan 01, ending Dec 31 and the event is 1st Sunday of every month.

The event is listed, but the widget just displays this:
My Event
From Sat Jan 1st 2011 to 31st Dec 2011
And because the range started Jan 1st, this event is always at the top of the list.

i am working on correcting this item.

Deriggs007 07-22-2011 01:06 AM

Can you please provide a demo?

I would like to add this for my website http://www.alteredgamers.com/ where it says "Featured Event"

I like the idea of having the ability show the picture with a set size, and use it as a "widget" if that makes sense...

Thanks!

Mooff 07-22-2011 09:05 AM

Quote:

Originally Posted by tomsch (Post 2215122)
i am working on correcting this item.

My version of the event widget (widget Turnierticker).
http://www.united-battlezone.de

(not based on your work, based on the idea here:
https://vborg.vbsupport.ru/showthrea...pcoming+events )
But heavily heavily modified. Maybe 5 lines of code are left. :D

Anyway - since our users rely on weekly recurring events i rewrote the code to account for that and set them in the right order. I thought it might help you with your work.

vB saves the recurring events in two seperate columns:
recurring and recuroption

I know for most of them what they mean (brute force testing :p). But the only one i have implemented so far is weekly.

Code:

elseif($event['recurring'] == 3) {
            $teile = explode("|", $event['recuroption']);
           
            //Datum neu setzen fuer die weeklies -- (offset damit der heutige noch erscheint!)
            while($event['dateline_from'] + $wez_offset < $time_offset)
            {
                $event['dateline_from'] += $teile[0] * 7 * 86400;
            }

What it does.
The recurroption for weekly events is saved like that:
1|5
-> event takes place every week on tuesdays and sundays.

3|32
-> event takes place every 3 weeks on fridays.

So we need that first part of the string, which i write into $teile[0] - then i'm using a loop to change the startdate to the actual week we are in (+ some offset to show events which are today).

I do that for all events which i take out of the database (usually 5ish more than i will show in the end - to account for database missorting based on the wrong dates).

Then i resort the array via
Code:

//getting database results
    foreach($DatabaseStatement as $event)
    {
//calculate new dates (see code above)

//add them into a big array
$events[] = $event;
}

//sort the $events array via array_multisort and startdate
    foreach($events as $c => $key)
    {
        $sort_date[] = $key['dateline_from'];
    }
   
    array_multisort($sort_date, SORT_ASC, $events);

//generate output


I hope that helps. :)

Kiint 05-16-2012 10:30 AM

Any chance of showing the complete code for the changes you made?

I'm having the problem of the recurring event showing at the top of the widget even though the recurring event is next scheduled until after the next 2 single events...

KGodel 05-29-2012 06:23 PM

Bumping. Any chance someone would know how to convert a time from the date of the calendar event to the date settings the user has specified?

oldfan 04-14-2023 02:47 PM

works on 4.2.5 php 7.2

oldfan 04-15-2023 03:55 PM

anyway to get this to show IE: april 15, 2023, april 15, 2022, april 15, 2021 on so on?


All times are GMT. The time now is 05:12 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.01950 seconds
  • Memory Usage 1,738KB
  • 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
  • (3)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
  • (9)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