Module development

About development of modules in Drupal.

jobnet.dk script

<?php

/**
 * jobnet.client
 *
 * dette script er for at logge ind i jobnet.dk's database og automatisk bekræfte
 * at du fortsat er aktivt jobsøgende.
 * Ændr $password og $username i det næste og kør scriptet:
 *
 * php jobnet.client
 *
 * Og du vil atutomatisk bekræfte at du søger job.
 */


// jobnet login og username
$username = 'username'; // som regel din email
$password = 'password'; // dit password


// skab en curl session
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "./cookieFileName");
curl_setopt($ch, CURLOPT_URL,"https://job.jobnet.dk/CV/login.asp

Drush shell scripts for creating drupal sites

README.txt

Note: I have added the densite scripts to the drupal website and you can find the latest version on this address http://drupal.org/project/densite

Simple task module for Drupal

Note: This will only work with MySQL.

After hacking around with Drupal for a couple of weeks I decided to write a module. I couldn't find any simple modules for making a task list with Drupal-6.x so I decided to write a module which accomplished just that:

Features are as follows:

- List past, future and all tasks
- Edit / delete tasks
- Search for tasks
- Multi user. Every user can get a task list.
- Uses users locale timezone if users locale is set.

Syndicate content