drupal

Drupal 7 Icons Set

Guys from russian Softfacade design stuido created a very beautidul icon set for Drupal 7.Read on →

How to add a tab to the node in Drupal

And another Drupal tip for today: "How to add a tab to the node in Drupal":

Put this snippet in hook_menu of your new module:

$items['node/%node/new_tab'] = array(
'title' => 'New Tab',
'page callback' => 'mycallback',
'page arguments' => array(1),
'access callback' => TRUE,
'type' => MENU_LOCAL_TASK
)

This tab is going to be shown on any node type and without access restrictions,

however, if you need to specify a special node type, 'custom_node' for example, do the following:Read on →

How to output comments anywhere within a theme

A little snipped which is among very much needed and asked on Drupal.org forums: "How to output comments in desired place on the page and not on the bottom?". Here is the answer:Read on →

Top 10 Drupal Tutorials

Drupal tutorials database on dtutorials.com is getting bigger and here are current top 10 tutorials:Read on →

Search Drupal Extension for Google Chrome

I found a pretty cool addition to Chrome browser. This extension allows users to search drupal.org and the drupal API quickly. You can use "6:keyword" or "7:keyword" to search the drupal API. You can grab it from here: http://downloads.zdnet.com/abstract.aspx?docid=1295403

Drupal Books on dtutorials.com + I need your assistance

I updated dtutorials.com - Drupal tutorials aggregator and added Drupal books section there. All books are tagged with compatible Drupal version. Overall, we have 18 drupal books right now.Read on →

Top 10 Drupal Tutorials on dtutorials.com

Some of you already know about recently launched Drupal Tutorials database website. On dtutorials.com we’re trying to collect all decent Drupal tutorials available on the internet (btw, you can also submit your favorite tutorials here).

Here is the current Drupal Tutorials Top 10:Read on →

How do US based web development firms survive? How do they find highly solvent clients?

I originally posted this question on Drupal.org forum (http://drupal.org/node/592560), but decided to duplicate it here, please feel free to post your thoughts here or on drupal's forum. Actually, this is a very interesting question to me.

Recently, I made a research and found out, that many famous Drupal oriented development firms (shops) are from US and Canada...and to my surprise not from China or India, where the workforce is cheap. Why is that?Read on →

Five Drupal Distributions. Overview

Drupal distibutions are gaining popularity. But you can ask me "Tim, what a distribution is?" Well, Drupal distribution is a custom edition of Drupal (preferably, built on latest stable version) tuned and extended with custom developed and contributed modules to enable desired features. Feel yourself confused? No problem at all, read on and you will understand what I'm talking about.Read on →

Top 10 Drupal Tutorials of the Week on dtutorials.com

A week ago we launched dtutorials.com - Drupal Tutorials aggregation directory. A lot of cool tutorials were submitted during last 7 days and now, we have more than 120 tutorials on various topics including Drupal Module Development, Theming, Drupal OptimizationDrupal Forms and what not.Read on →