rate user

is there someone here who could help me to rate user on drupal? thanks for help
as i use drupal 7
i really appreciate it

Rate user?

Is there any module for Drupal 7 for Rating users.

Can someone suggest one?

Thanks!

Display sql results in a tab

I need to display my sql results ( search of a user) in a tab.
i'm supposed to use theme function but don't know exactly how to use it.

my code:


<?php

function rech_util_menu() {

$items['rech_util'] = array(
'title' => 'Recherche d\'utilisateur',
'page callback' => 'drupal_get_form',
'page arguments' => array('rech_util_form'),
'access arguments' => array('access content'),
);

$items['rech_util/list'] = array(
'title' => 'Résultats recherche',
'page callback' => 'rech_util_list',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);

return $items;
}

function rech_util_form() {
global $user;

$form['intro'] = array(
'#markup' => t('Effectuer votre recherche en saisissant au moins un critère.'),
);

$form['nom'] = array(
'#type' => 'textfield',
'#title' => t('Nom'),
'#size' => 30,
);

$form['prenom'] = array(
'#type' => 'textfield',
'#title' => t('Prénom'),
'#size' => 30,
);

$form['societe'] = array(
'#type' => 'textfield',
'#title' => t('Société'),
'#size' => 30,
);

$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Rechercher')
);

return $form;
}

function rech_util_form_submit($form, &$form_state) {

Youtube RSS feed headhach

Hello, i'm trying to get a rss feed from youtube to display the latest entry.
However for some reason i cannot get the RSS feed to get any new elements in Drupal.

A couple of weird thing:
- The RSS adress i pass in is fine, tested it in my navigator and it display the usual RSS page.
- Even weirder, if i change the user name it ll also work in Drupal.
- When i click on get new element in Drupal, it actualy says it added some new content but it still stucks at 0 elements, so no error i could work on.

Submitted Webform + Rules = EntityMetadataWrapperException: Invalid data value given. Be sure it matches the required data type

Hi,

I'm trying to use Rules with Webforms.

Immediately after enabling a rule for 'After a webform has been submitted' event I get following error while submitting a form:
EntityMetadataWrapperException: Invalid data value given. Be sure it matches the required data type and format. in EntityMetadataWrapper->set() (line 122 of *\sites\all\modules\entity\includes\entity.wrapper.inc).

Webform 7.x-3.11
Webform Rules 7.x-1.x-dev
Entity API 7.x-1.x-dev
Rules 7.x-2.0-beta3

Is there anyway to post blog entry in advance, then Drupal will post that entry automatically at the time I want?

Hi all, I just wonder if there is any way to post an entry in advance, then at the specific time, the drupal system would repost that node automatically?

Thanks mates.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x