Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Preview: Event Calendar Module


Go to End


293 Posts   69221 Views

Avatar
bummzack

Community Member, 904 Posts

28 March 2009 at 6:22am

Hi UncleCheese
Yes, either the <% require %> tag or just plain html includes. The require tag is possibly the better choice since it prevents duplicates.
From studying the SSViewer class, I was able to figure out how this tag works:
The first part is the keyword "require", followed by the method to call with arguments in braces.

<% require css(path/to/my/file.css) %>

Will call Requirements::css('path/to/my/file.css');
Same goes for JavaScript, eg.
<% require javascript(path/to/my/file.js) %>

HTH

Avatar
bummzack

Community Member, 904 Posts

30 March 2009 at 10:40pm

Hello, it's me again.

I hacked the Calendar classes to output european-formatted dates. Not in a generic/reusable way though... that would require quite an amount of refactoring i guess.
I set the locale using setlocale. Then I changed the methods of the Calendar class to use strftime instead of date. Example:

case "day":
    return strftime('%d. %B %Y', $this->start_date->get());
    // instead of: return $this->start_date->format('F jS, Y');

Just in case somebody tries the same thing...

@UncleCheese: Have you thought about highlighting the dates where an event occurs in the calendar widget? I guess it should be feasible using the renderCalendarCallback setting of the CalendarWidget: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/renderCalendarBankHolidays.html
Ranges could be a problem though.. what do you think?

Avatar
baba-papa

Community Member, 279 Posts

31 March 2009 at 3:34am

Hello UncleCheese,

your calendar is great, thank you. I´m looking forward to the improvements, especially european date format.

I love Silverstripe! It´s amazing what featureful sites can be build with a little knowlege of PHP and OOP.

Avatar
UncleCheese

Forum Moderator, 4102 Posts

31 March 2009 at 4:45am

@ banal - Glad you got it working. The part I'm struggling with is giving the user the ability to choose which format characters to plug into the date() function. For instance, some users may want "October" in lieu of "Oct." That only really matters in the getDateString() method that returns a magically rendered date span in its template function $_Dates. So I may just make that US format only for now, or limit the options for European. Ultimately, date display should be left to the template, so I don't mind empowering users to handle it as they wish using $StartDate.Format() and $EndDate.Format().

Hopefully I'll get some time into it today.

Avatar
bummzack

Community Member, 904 Posts

31 March 2009 at 5:29am

Hi UncleCheese

Yes, putting this stuff into templates makes sense. I'd keep the "magic" stuff to a minimum and rather provide start- and end-dates or other information the user can then mix freely in his templates. If he wishes another formatting, overriding the base class and adding custom controls (public methods) should do the trick.
Be sure to use strftime instead of date, since it is "locale-aware".

I'll check out if I can make the highlighting work..

Avatar
UncleCheese

Forum Moderator, 4102 Posts

31 March 2009 at 5:36am

Thanks for the strftime idea. Did not know date() wasn't locale aware.

Making the calendar widget event-aware is a whole other project. Because it's javascript-based, right now we can only get the events for the current month. We could frontload it with several months of future events and add a lot of overhead, but ideally what you want is an AJAX based calendar that will populate itself with each turn of the page.

Anxious to see what you come up with, though. It would be a great feature.

Avatar
bummzack

Community Member, 904 Posts

31 March 2009 at 9:46am

Edited: 31/03/2009 9:47am

I did some tests and I guess the "renderCallback" option of the datePicker widget could work for the event highlighting. As you said, this would require prefetching all of the event dates and write them to javascript... I'm not really sure if I correctly understand your class and DB dependencies. Would it be possible to fetch all event dates (or ranges) with a simple db query? I guess the problem will be caused by the recurring/interval types of events, right?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

31 March 2009 at 9:56am

That's precisely the problem. All of the recurring events are injected on the PHP side, not in MySQL. I tried very hard to come up with a query that would work, but to no avail, it has to be done in the controller. That's why everything has to get routed through the Events() function.

One quick way to do it would be $this->UpcomingEvents(999). But that wouldn't get anything before today.

I'll have to revisit that Events function. It's pretty flexible. Should be able to throw it a start and end date (sfDate objects) and have it do its thing.

Go to Top