video display on a lighbox

Hello
Can we display video on a lightbox in drupal 7? If yes how can we implement this?

Show Images in an overlay, nothing more!

Hello, I'm getting crazy about this issue.

What I want is, that when I click on an image it should open in an overlay. That's all I want, nothing more.

I tried colorbox and managed to set up a gallery page but that is not what I want. I simply want every picture in my articles to open up in an overlay when i click it.

If someone could point me in the right direction I would be very happy, I'm looking for a solution to this isse since 2 days now and finally decided to ask for help.

I would really appreciate any help!

D7: pages only for authenticated users

Hi!

I am working on a website for a small non-profit organization.

One or more pages should be visible only for authenticated users.

Is this possible with Drupal 7 right now?

Drupal 7 Core doesn't seem to support this.
Module Content Access is in Dev status.
Is there a suitable module which is mature enough?

Best regards
Gerald

hook_form never executed

I'm trying to create a module which should create a new content-type. I've managed to actually add a node-type, but there are no fields but the default ones, and I figured out why: my hook_form never gets executed.
My test-code:
<?php

// hook_disable() implementation
function contenttypetest_disable(){
error_log('hook_disable called!');
node_type_delete('contenttypetest_node');
}

// hook_uninstall() implementation
function contenttypetest_uninstall(){
error_log('hook_uninstall called!');
node_type_delete('contenttypetest_node');
}

// hook_form implementation
function contenttypetest_form(&$node, $form_state){
error_log('hook_form called!');
$type = node_type_get_type($node);

$form = array();

$form['title'] = array(
'#type' => 'textfield',
'#title' => check_plain($type->title_label),
'#default_value' => !empty($node->title) ? $node->title : '',
'#weight' => -5,
);

$form['contenttypetest_pass'] = array(
'#type' => 'password',
'#title' => t('Type a password'),
'#description' => t('You can type anything you like.'),
);
$form['contenttypetest_veld'] = array(
'#type' => 'file',

My menu tree doesn't appear like a tree

Hi there,

I am currently developing my own theme.
The theme was designed by some web designers, and they had a very "Special" sort of menu.

The menu is rendered pretty good, like:

    $hoofdmenu = menu_navigation_links('menu-hoofdmenu');
    echo theme('links', array("links" => $hoofdmenu, 'attributes' => array('id' => 'hoofdnav', 'class' => 'radius')));
    

(...)

Multi-site, multi-domain and multi-language

For a client we need to build an extended website which basically contains different top level domains. Each top lever domain should have it's own page tree and each tree should have it's own languages.

For example:
The first tree would be an all English website and another tree would have different content and should have Dutch and French content because it's a Belgian website.

Is this possible with Drupal 7? To build multiple websites in one instance of Drupal with different trees which can have one or more languages per tree.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x