date
Need help extending events section using date/calendar/views
I have built and events feature on a site using Date/calendar/views.
you can view it here:
http://vcdev.andreaburton.com/events
I am using the view that the calendar module provides with the year, month, week, day views.
What i really need is for the main page to show the month calendar view and have a filtering feature. And then show the events below the month calendar. I have mocked it up here:
create event from calendar clicking on date
I`m trying to make a calendar block with clickable dates. this is for a guest house to make reservations.Clicking on date would take to /node/add/my_event/2009-06-05 or /node/add/my_event/?date=05-05-2009 or similar. I want to pass the date as argument to "create content" form. any guest has access to create this type of node, but the default state is "unpublished" so that only administrator can approve (publish) the node. after that the created event would appear in calendar block and have CSS "has-event" definition (e.g. red color).
PHP Script for XML-RPC calls from outside Drupal
Here is a set of PHP functions I put together for calling Drupal's core XML-RPC methods without using the Services API:
<?php
function assemble_request($method, $args = array(), $dump_request = FALSE){
$request = xmlrpc_encode_request($method,$args);
$context = stream_context_create(array('http' => array(
'method' => "POST",
'header' => "Content-Type: text/xml",
'content' => $request
)));
if($dump_request){
echo '
';
echo htmlentities($request); "Drupal Calendar Display Engine (DCDE)": Something like the idea of Themes but just for Calendars plus other features.
NOTE: This idea is strictly about displaying calendar data, not managing or storing such data.
Create a comprehensive calendar display module with the following features:
-
Allow for multiple calendar feeds of different types to create a merged calendar display output.
a. auto sort and arrange multiple events within each day-cell. Include features to deal with conflicts in multiple calendar feeds. Include features to deal with event displays overflowing a given day-cell.
Organic Groups and Views Calendar
Hi,
It seems that 2 main tasks are not supported by a combination of those 2 modules:
- Show me events from all my groups (where I am a member) on one Calendar view.
- Show me events from the group whos homepage I'm viewing right now (doesn't matter I am a member or not). - this is handled by og_calendar and event module combo.
I was working offline whole day yesterday and didn't find out any solution.
Any ideas ?
Cheers,
BeNone
RSVP module question
Hello all,
I'm using the RSVP module for a website I'm developing and I have a question regarding its use. It's Drupal 6.
I'm looking to have other users RSVP for my events (created using the Date & Calendar modules) without actually having to send out the invitations. Kind of like what the Signup module does.
Is there a way to do this with the RSVP module that I'm unaware of? It seems to me like you have to send out the invites first and then the only people who can do the RSVP are the invitees. But I want EVERYONE to be able to RSVP if they want without needing an invite.


