This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

Basecamp Integration

Anyone explored using the new Basecamp API to integrate Drupal with Basecamp?

I'd love to see this happen. I think there would be a lot of interest in this and I'm sure that bounty would be offered for this. However that's jumping ahead of things a bit. Not even sure how feasible it is and whether it would be really workable.

I'd rather see drupal offer some basecampesque functionality, which it is close to in some areas and far from in others.

Any thoughts on this?

can't create more than 2 path in module

I'm trying to write my own module and I have problem because I can't create more than two path for this module

function koszyk_menu($may_cache) {


  if ($may_cache) {
       $items = array();
     $items[] = array('path' => 'koszyk',
                      'title' => t('Zawartosc koszyka'),
                      'callback' => 'koszyk',
                      'access' => user_access('kupowanie'),
                      'type' => MENU_CALLBACK);
     $items[] = array('path' => 'koszyk/dodaj',
                      'title' => t('Dodaj do koszyka'),
                      'callback' => 'koszyk_dodaj',
                      'access' => user_access('kupowanie'),
                      'type' => MENU_CALLBACK);
     $items[] = array('path' => 'zamowienie',
                      'title' => t('Adres dostawy'),
                      'callback' => 'koszyk_zamowienie',
                      'access' => user_access('kupowanie'),
                      'type' => MENU_CALLBACK);
     $items[] = array('path' => 'zamowienie/koniec',
                      'title' => t('Adres dostawy'),
                      'callback' => 'koszyk_zamowienie_koniec',
                      'access' => user_access('kupowanie'),
                      'type' => MENU_CALLBACK);
  }

  return $items;
}


function koszyk_zamowienie() {

$output = "1234";
print theme('page', $output);

Dynamic dropdowns

Hi there,

I'm trying to implement two dropdowns in a node form. One is filled with country names, the other with cities. I like to accomplish the following situation: when the country is selected the city dropdown updates with a list of cities belonging to that country.
I'm using drupal 4.7, but can't find anything in the new formapi-reference. I think i'll have to solve it with the #attributes and some onChange action. But i don't know where to start.

I hope somebody can give me some advise on how to accomplish this situation.

Big Thanx In Advance,

CPanel

CPanel is not showing up when you go to submit a bug report for this module. I have no idea where else to post this.

I installed it on the the new Drupal 7 as is and got the following error:

Fatal error: Call to undefined function: form_submit() in X/modules/cpanel/cpanel.module on line 266

Simon.

Tutorial for ModuelDevelopment?? How to send Variables to the page.tpl.php??

Hi There one Question...

I am intended to develop a module for my local drupalinstallation. The Problem is, i cant find anything that tells me how to send Variables and its content to the page.tpl.php and so on..

Is there a tutorial available ???

thanks

weather module?

hi

i want to know if on my website ican make a custome block to show the daily weather for some other website or if there is a module avialable to do that

and please can some one also let me know how to make a custom block to display the weather

thanks

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions