- Accessing Oracle from PHP
- CSS tricks explained
- Conditional fields
- Drupal tips
- Installing Drupal
- Autologout when closing browser
- Block visibility depending on node type
- Editor instead of a text box
- Event calendar
- Hosting provider requirements
- Images
- Increasing upload and memory limit
- Meta tags
- Modifying the maintenance page
- Other fields besides title and body
- Permissions
- Second level primary links block
- Signup form using CCK
- Theme issues
- Translations
- Upload progress
- Useful modules
- Video uploads
- HTML / XML code
- PNG hack for IE5/6
I have written a module for this to make this process easier. You can find it at http://drupal.org/project/calendar_tooltips. It requires beautytips. If you would like to know how it works or how to do it manually, read on. There are many tooltip modules for Drupal out there. I use beautytips. Download it and install it. For Explorer you also need to download excanvas_r3, and unzip it in a new directory excanvas_r3 in the sites/all/modules/beautytips/other_libs directory. The content of a tooltip (the text appearing on the balloon) can come from:
We won't be using the first method, because I had trouble including HTML markup in the title attribute of an HTML element. The third method, referring to another HTML document, is cumbersome to implement. I went for the second method. Say, for example, we have a date 25 (like in december 25). Normally the following HTML code is produced: <div class="month mini-day-on"><a href="...">25</a></div> The class "mini-day-on" is added when there are events on that date. If there are no events on that date, then the class "mini-day-off" is added. What we are trying to achieve is placing the following HTML code after the hyperlink "25": <span style="display:none">Christmas day</span> The text "Christmas day" will not display on the calendar (because of the "display:none" style), but later on when we are done, it should display on the tooltip when you hover over "25" on the calendar. When there are multiple events on that date, it may be useful to list the events in an unordered list. This will look something like this: <span style="display:none"><ul><li>Christmas day</li><li>Richie's birthday</li></ul></span> In order to tell Beautytips where to get the content we need to override the calendar module's calendar-mini.tpl.php. Copy sites/all/modules/calendar/theme/calendar-mini.tpl.php to your theme's directory. Add the following code at the beginnning of the month-view div:
<?php
$bt_options['mini-calendar'] = array(
"area" => ".mini-day-on a",
"contentSelector" => '$(this).next().html()'
);
beautytips_add_beautytips($bt_options);
?>
The area is a CSS selector that selects every hyperlink (eg. every date) on the mini calendar. The contentSelector is jQuery code which specifies the HTML code of the hyperlink's first sibling (in our case the span element) as the tooltip's content. Now we need to write some PHP code that produces the span element with the relevant event data. This is the difficult part. Look for the function called template_preprocess_calendar_datebox in sites/all/modules/calendar/theme/theme.inc. Copy this function to your theme's template.php. Replace the text "template" by the name of your theme. Insert the following code after this line: $vars['class'] = 'mini-day-on'; Here is the code:
$bt_text = "<ul>";
foreach ($vars['items'][$date] as $time => $results_at_that_time)
foreach ($results_at_that_time as $num => $result)
$bt_text .= "<li>" . $result->raw->node_title . "</li>";
$bt_text .= "</ul>";
$bt_text = "<span style=\"display:none\">" . $bt_text . "</span>";
$vars['link'] = l($vars['day'], $vars['url']) . $bt_text;
What this does is aggregating all event data of that day and put it in an HTML unordered list, which is parented in a span element, which, on its turn, is placed next to the hyperlink. That's it! |
|||

After building an event calendar (see
Problem with activation
Need this module for drupal 5
Hi
I really liked this module but i need this for drupal 5 can you please help me out in this
Regards,
Muhammad
Re: Need this module for drupal 5
See: http://drupal.org/node/462736#comment-2929552