Showing posts with label drupal. Show all posts
Showing posts with label drupal. Show all posts
Monday, March 05, 2012
Tuesday, July 12, 2011
Information on Drupal setup for Multilingual site
This link gives information on Drupal setup for Multilingual site
Tuesday, January 18, 2011
Programmer's reference to the Drupal Forms API
This document provides a programmer's reference to the Drupal Forms API.
Friday, December 04, 2009
How to find which version of Drupal I'm running?
Failing that, look for a file called CHANGELOG.txt in the root of your Drupal directory and open it up to find the version you are running.
If CHANGELOG.txt is missing, you can also check in system.module for a line at the top like:
define('VERSION', '5.5');
If this is present, it will tell you which version you are running. If not, you have a version earlier than 4.7.2.
What are the content types associated with core Drupal modules?
What are the five main layers in the Drupal system?
1. Data (Nodes, etc)
At the core of the system is the big bucket of nodes—the data pool. Before anything can be displayed on the site, it must be input as data
2. Modules
Modules are functional plug-ins that are either part of the Drupal core (they ship with Drupal) or they are contributed items that have been created by members of the Drupal community.
3. Blocks & Menus
Blocks often provide the output from a module or can be created to display whatever you want, and then can be placed in various spots in your template (theme) layout.
4. User Permissions
This is where settings are configured to determine which things different user types have access to.
5. Template
This is made up predominately of XHTML and CSS, with some PHP tokens sprinkled throughout to insert content from the system into the correct spots.
Subscribe to:
Posts (Atom)