#module development #Modules #theming

Events happening in the community are now at Drupal community events on www.drupal.org.
Sayak Sarkar's picture

Version Abstraction For Module Customizations

One of the main problems faced by Drupal Developers today is that modules customized for a particular application cannot be updated to newer versions without loss of customizations. When updates to such modules are released for a newer version, the developer has to rewrite the customization from scratch in the new version.

I would be interested in working towards the creation of an abstraction layer/module, that would enable version free customizations of Drupal modules for Google Summer Of Code 2012.

Now, this module can basically work in the following way:-

Read more
Develcode's picture

Regristration Validation modules with Ajax in drupal 7

1.Create folder nama modules mu

2.crate namamodules.info

dan ikuti kode berikut ini

name = "Registration Validation"
description = "Validates username and email address during registration"
core = 7.x
package = Sudarsono Costume Modules
files[] = valid.module

3.buat file namemodules.module

dan ikuti kode ini

<?php
// $Id$

/**
* @file
* Validates username and email address during registration.
*/

/**
* Implementation of hook_form_alter().
*/
function valid_form_alter(&$form, $form_state, $form_id) {

Read more
Subscribe with RSS Syndicate content