Project:Birthdays
Version:7.x-1.x-dev
Component:Code
Category:feature request
Priority:normal
Assigned:Unassigned
Status:postponed

Issue Summary

It would be nice that it will create an Event node when submitting a birthday (then you can see it on the calendars)

Comments

#1

That would indeed be nice. I've added to my feature-list!

#2

coming from http://drupal.org/node/141411 i second this feature request

#3

:-) I'll also vote for this one! I've been trying to figure out how to do this myself and it's been getting messy.

#4

on d6 this also is missed a lot :(

#5

Modify the event view and add the birthday field to it:

Create a custom module:

function custom_love_views_query_alter(&$view, &$query){
    if ($view->name == 'YOUR_EVENT_VIEW') {
        $where_clause="MONTH(YOUR_BIRTHDAY_FIELD) = MONTH(curdate()) AND DAYOFMONTH(YOUR_BIRTHDAY_FIELD) = DAYOFMONTH(curdate())";
        $view->query->add_where('birthday_filter', $where_clause);
    }
}

I didn't test it but this should work on D6 i have no experience on D5...

#6

Title:Implementation with Event module» Integrate with Event module
Version:5.x-1.x-dev» 7.x-1.x-dev
Status:active» postponed

Should go into 7.x-1.x first, might be backported to 6.x and won't happen for D5 (unless someone writes a straight forward patch).

Postponed at least until Event has a stable release.

nobody click here