How To Update Drupal Modules

5

Posted by admin | Posted in Drupal | Posted on 18-01-2011


This is about How to Update Drupal Modules

Jumi For Joomla Custom Modules, Components and Content Sections Using Javascript DHTML and more

3

Posted by admin | Posted in Joomla | Posted on 24-09-2010


This tutorial uses Jumi: Jumi is the set of custom code extensions for Joomla! 1.0.x and 1.5.x in their native modes. Since 2006 more then 200.000 downloads. With Jumi *you can include php, html, javascript scripts into the modules position, articles, category or section descriptions, or into your own custom made component pages, *you can even include static html or txt pages into your pages without using wrapper component, *you have full access to Joomla! variables, functions, constants, etc. in your php scripts. Jumi is ideal solution for *including banners or text ads into your Joomla! site: no matter if your own or affiliates ones, *easy and fast inclusion of smart javascript, php, html and dhtml scripts into your Joomla! content, *fast development of not only small and simple customized modules and plugin solutions based on php, javascript and html or dhtml scripts like flash shows, ads and picture presentations, forms inclusion, etc. but for the development of more sophisticated solutions including database data processing. With this tutorial you can do a lot of amazing things with Joomla.

Create Drupal 6 Modules With New Book

0

Posted by admin | Posted in Drupal | Posted on 24-09-2010

Learning Drupal 6 Module Development is a new book from Packt, which acts as a practical tutorial for creating Drupal 6 modules with PHP. Written by Matt Butcher, this book will help users to walk through the development of complete Drupal 6 Modules.

Drupal is a free and open-source modular web application framework and content management system (CMS) written in PHP. It can run in many environments, including Windows, Mac OS X, Linux, and FreeBSD. It’s a modular system, with an elegant hook-based architecture, and great code. These are a few of the perks that make Drupal a choice platform for developers who want the power of an established CMS, but the freedom to make it work for them. From social networking to AJAX to e-commerce, the hundreds of existing modules attest to Drupal’s flexibility.

If users are eager to start creating modules for Drupal 6, this is their book. They will walk through the development of complete Drupal modules with this primer for PHP programmers. Specifically written for Drupal 6, this book will get users coding modules as quickly as possible, and help them add the features that will give their work that professional gloss!

This book will give users a clear, concise and, of course, practical guidance to take them from the basics of creating their first module to developing the skills to make them a Drupal developer to be reckoned with. Learning Drupal 6 Module Development covers the new and updated APIs to guide their transition to Drupal 6. The new menu system, the Forms and Schema APIs, and many core revisions are covered in this book.

This book is written for PHP developers who want to add custom features to Drupal. Users will need to know the basics of PHP and MySQL programming, but no experience of programming Drupal is required, although they will be expected to be familiar with the basic operation of Drupal.

For more details on the book please visit www.PacktPub.com/drupal-6-module-development/book

Right Way to Install Drupal Modules

0

Posted by admin | Posted in Drupal | Posted on 14-09-2010

It’s quite common that you want to add a new Drupal module to your site. And Drupal has made this process very easily. But due to lack of the knowledge of Drupal folder structures, the module is installed in the wrong way, which increase the future maintenance cost of your site. In below, we will talk about how to install drupal module properly.

Download Drupal Module Source Code

In order to install a module, you will need to download the source code, and unzip it. The best place to find the 3rd party module is in Drupal official site: http://drupal.org/project/Modules, there are huge list of free and useful modules you can use to setup a powerful web site.

Upload Drupal Module Source code to Proper Directory

Then, we come to the most important step – unload the code to the correct directory. What the “correct directory” here means? Drupal can recognize the new module if you upload the source code to one of the below directories:

{Drupal}/modules/ {Drupal}/sites/all/modules {Drupal}/sites/{site}/modules

And each of above directory has its own purpose.

As a best practice in using open source project, it would be good to keep all the customized code to one place and don’t touch all the core code the open source projects have developed. This will greatly reduce your maintenance cost when upgrading your code to next version. For Drupal, the centralized directory for customized code is {Drupal}/sites.

For directory {Drupal}/modules/, this is the place to place the Drupal core file, even you can install your module there, we would like recommend you not to do it.

And for {Durpal}/sites/, if you want this module can be used by all the sites you host in your Drupal instance, it would be good to place the module source code to {Drupal}/sites/all/modules. And the module installed in {Drupal}/sites/{site}/modules will be only available in the specific site.

Active Drupal Module

You can go Administrator->Site Building->Modules, check the the module you just install and save the configuration to active it.

Now, you should be able to use the new module now.

Drupal Tutorial – Creating Modules

25

Posted by admin | Posted in Drupal | Posted on 13-09-2010


In this quick video I shall demonstrate the nuts and bolts of creating a module.