6.x

Lazy Registration 6.x port (Deadwood)

  1. <?php
  2. // $Id: lazyreg.module,v 1.1 2007/03/05 12:49:53 pixelmonk Exp $
  3.  
  4. /* TODO FormAPI image buttons are now supported.
  5.  

Callback overrides 5.x -> 6.x

  1. // what we had in 5.x
  2.  
  3. function mymodule_menu($may_cache)
  4. {
  5.   $items = array();
  6.   if(!may_cache && module_exists('devel'))
  7.   {
  8.      $items[] = array(

hook_menu

  1. /**
  2.  * Implementation of hook_menu().
  3.  */
  4. function annotate_menu()
  5. {
  6.         $items = array();
  7.  
  8.         $itmes['admin/annotate'] = array(
  9.                 'title' => 'Node annotation',

Googleauth Port to 6.x googleauth.module

  1. <?php
  2. // $Id: googleauth.module,v 1.1 2007/07/13 18:22:22 ssnider Exp $
  3.  
  4. /**
  5.  * @file
  6.  * Implement a single sign on provider for Google Apps for Education
  7.  */
  8.  
  9. /**
  10.  
Syndicate content