Multi-Level Menu Module

I've been looking for some time for a module (7.x) which would allow me to do the following:
I need a menu which could look like this:

France
- info
- gallery
- map
- points of interets
Italy
- info
- map
Germany
- gallery
- points of interets,

Weird error making content update impossible

Hi
I have started getting this error

Speed of my site between 1 and 1.5 seconds, how to get lower?

Hi all,

I am buidling a new site, it has quite some modules, but only the ones it needs. So from the following, not all sub modules are installed. The modules in question are:

- All Field modules
- Forum modules
- Ubercart modules
- Some 'basic modules', like ckeditor, imce, token, pathauto, global redirect, etc...

Custom coding: Adding advanced validation or submit code

An example for your particular use-case would look like the following:

- Make a new directory in sites/all/modules called "mywebform_extra".
- Make a new text file in sites/all/modules/mywebform_extra called mywebform_extra.info. Put this inside of it:

name = Webform Extra
description = Customizations for the Webform module.
core = 6.x
package = Webform
dependencies[] = webform

- Make a new text file in sites/all/modules/mywebform_extra called mywebform_extra.module. Put this inside of it:

<?php
/**
* Implementation of hook_form_alter().
*/
function mywebform_extra_form_alter(&$form, &$form_state, $form_id) {
// Add validation for a particular Webform node:
if ($form_id == 'webform_client_form_44') {
// Simply add the additional validate handler.
$form['#validate'][] = 'mywebform_extra_validate_44';

// Add the submit handler after the existing Webform submit handler,
// but before the second Webform handler. Pop off the first one and add
// ours second.
$first = array_shift($form['#submit']);
array_unshift($form['#submit'], $first, 'mywebform_extra_submit_44');
}
}

/**
* Validation handler for Webform ID #44.
*/
function mywebform_extra_validate_44(&$form, &$form_state) {
global $user;
if (!isset($user->roles[4])) {

trying to add span to menu

Hi Themers

I am new to theming in drupal and I have a quick question. I want to add spans around the text in my main menu. But I am not sure how to do it. This is my code

print theme('links', array('links' => $main_menu, 'attributes' => array('id' => 'primary', 'class' => array('links', 'clearfix', 'main-menu'))));
--

youtube videos do not display with video module viewed with IE 9 on Windows 7

Video module with latest releases Works fine when viewed with IE 8 on XP but does not with IE 9 on Windows 7:
http://humanhighlights.com/video/west-albany-at-liberty

I just upgraded from Drupal 7.7 to 7.8 and
Media 7.x-1.0-rc1 and
Media: YouTube 7.x-1.0-alpha5

Any ideas?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x