Drupal

By admin, 1 June, 2010

Recently we managed to get approval of Urdu translation on Drupal at Drupal Localization Project. We started with very few contributors who are working very hard to translate all strings/interfaces for Drupal Core and Drupal contributed modules.

Urdu translation for Drupal can be found here. I am looking for people who are good in english to urdu translation to contribute to this project.

By admin, 15 April, 2010

Drupal API provide a hook function hook_block that allow developers to create block or set of blocks their way. hook is a keyword that will replace by the module name, for example example.module file will implement this hook as example_block()

For further details about this hook please visit here

By admin, 30 March, 2010

Drupal APIs and Drupal framework allows developer to provide means for other modules to interact or intervene using hooks. This can be done by simply using an API called module_invoke_all(), a comprehensive detail for this function can be found here. Details about hooks in drupal can be found here

By admin, 26 March, 2010

Programmatically inserting, editing and deleting a taxonomy term using drupal api is as easy as A,B,C. After scanning taxonomy_term_save() function, it looks like that if we pass an associated array as an argument to this function with proper keys we can make this happen very easily.