How to create a module in Drupal 7.x

What is a module in Drupal? A module is nothing but a collection of functions that links into Drupal, providing all the additional functionality/behaviour for your Drupal installation or your Drupal site. After reading this tutorial, you will be able to create a basic block module and use it as a template for more advanced Read more...

   

Working of Drupal theme system

Drupal 7 - Theme Anatomy

Ok, we can do this the hard way or we can do this the Drupal way! In the below section I’ve tried to define the theme structure of Drupal 7.x. Always remember ”Never hack core!” Why you shouldn’t modify core files No matter how easy it is to modify core files to make Drupal do what Read more...

 

20+ most installed modules of Drupal

druplicon.small_

There are more than thousands of contributed Drupal modules, but sometimes it’s necessary for us to find out which is the most installed Drupal module that can be perfectly suitable for our project. Below I’ve listed some of the most used/installed & essential Drupal modules: Views What is Views The Views module provides a flexible Read more...

 

Learn CakePHP From Novice to Professional : Part 2

Model-View-Controller

Model-View-Controller Cake enforces an MVC structure for your web applications. Basically, it effectively separates typical operations into specific areas: MODELS : for all your database interaction VIEWS : for all your output and displays CONTROLLERS : for all your commands/scripts for input and program flow The typical PHP application mixes each of these three functions Read more...