Node in a popup

For 6 I see there are a few modules that will show nodes in popups, but is there anything for 7?

If not anyone know a way I can go about achieving this? Just need "teasers" essentially to link to the full node, which would appear in a popup (lightbox, shadowbox, colorbox, I don't care at this moment in time, as long as it's a popup).

schedule/book a lesson module

Hi all Drupal fans

I'm a new user of drupal so I was wandering could you help me find a module.
I'm looking for a module that list all available tutors in a table shows what subject do they teach, pay per hour and resting(stars or some thing like that) and allows the user to schedule/book a lesson whit that tutor.

Can you recommend me something?
Thank You for your help
darq88 from Poland

User field permission module check

Hi everybody,

For my project I wanted per field permissions for user fields. The module field_permissions didn't work so well, therefor I decided to build a simple version myself. I haven't created the functions that make a nice backend yet (so all the setting are written down in the database manually for now) and there's a lot of duplicated code but can someone comment my module so far?

user_field_permissions.info

name = User field permissions
description = "Sets permissions to certain user fields making them only viewable/editable by certain roles"
package = User field permissions
core = 7.x

files[] = user_field_permissions.install
files[] = user_field_permissions.module

user_field_permissions.install
<?php

/**
* @file
* Install and uninstall schema for the user_field_permissions module.
*/

/**
* Implementation of hook_schema().
*/
function user_field_permissions_schema() {
$schema['user_field_permissions'] = array(
'description' => 'Stores user field permissions',
'fields' => array(
'id' => array(
'description' => 'The unique identifier for this item.',
'type' => 'serial',
'not null' => TRUE,
'disp-width' => '11',
'unsigned' => TRUE,
),
'rid' => array(
'description' => 'The role id as seen in the table role',
'type' => 'int',

Table of contents

Hi there,

I think I'm finally at a stage where I want to try to develop a complete site using Drupal. I'm a long time Joomla user simply because the learning curve wasn't as steep as it was for Drupal 5/6 years ago.

In Joomla, you can link to a section that displays a table of content items. Am I right in thinking that this can only be achieved through the use of views in Drupal or is there a native way to do this?

Cheers in advance for the help guys,
Arthur

ISO Scrolling images module

I need to display images across the footer of my site. There will be 5 or 6 images displayed at a time, from a repository of about 30 images. Can anyone recommend any module that will scroll through the images? Or a way to randomize which images are shown on each page? I've been searching the site for one, but I'm either not searching for the right thing or am just missing it completely.

Theme user pics with image styles

My site is set to display user pictures with a certain image style- a larger one that is good for profiles. I need to display them with a different, smaller, image style in comments.

How can I theme this?

I see there is a theme_user_picture function but I'm not sure how to use it.

Thank you.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x