Blog Archives

Custom Module

udhaya.info name = udhaya description = This is my first custom module core = 7.x package = udhaya files[] = udhaya.module udhaya.module <?php function udhaya_block_info(){ $blocks = array(); $blocks[‘info’] = array( ‘info’ => t(‘Custom Module!’), ); return $blocks; } function

Tagged with: , ,
Posted in drupal

Control Who Can View Drupal Nodes: Content Access

Although Drupal comes with 5 permissions for content, none of them deal with access. Here are the 5 default permissions: In this list, you can see create, edit and delete but you can’t see view. There are a lot of

Posted in drupal

Creating a Drupal Slideshow with Views Slideshow

Step 1: Installation Install and enable these four modules: CTools: http://drupal.org/project/ctools Views: http://drupal.org/project/views Views Slideshow: http://drupal.org/project/views_slideshow Libraries: http://drupal.org/project/libraries You’re also going to need a single file that contains a JQuery slideshow script. This will need to be uploaded manually. Visit http://malsup.com/jquery/cycle Click the Download the

Posted in drupal

Using Drupal’s Advanced Forum Module

Drupal’s core forum module has been around for a long, long time. It was first introduced back into Drupal 3 in 2001! The forum module is fairly basic but it has proven reliable enough to handle some large sites such

Posted in drupal

Essential Modules for New Site Builders

So you’re not going to take my advice and instead you’re going to develop your Drupal skills by building a site from the ground up. I have to say that if you’ve got the time, it’s not a bad way to go.

Posted in drupal

Five Tips for the Drupal Beginner

When you’re first getting started with any content management system there is a lot to learn and Drupal’s past has given it an undeserved reputation as being especially challenging. Here’s some quick advice to set beginners on an easier path. Skip

Posted in drupal

How to Learn Drupal

Pick a Distribution The first step is to skip Drupal core and download a couple of distributions. Starting with Drupal core locks you into a steep learning curve because it’s not a finished CMS, but is instead a framework for

Posted in drupal

Drupal & Ajax – Basic Tutorial

The following tutorial will guide you step by step how to create a quick implementation of Ajax in Drupal. We will dynamically update a page with content we will read from the server without the need to refresh the page.

Posted in drupal