[PathAuto, Token] need hierarchy URL alias

Hi!
I have:

costum type of node "Skazki" with field "field_komu-Term reference(Vocabulary "Komu")"
Each node Skazki necessarily contains 1 term with from "Komu"

for example
Komu =>one
=>two

pathauto make alias for terms
http://test.com/komu/one - GOOD!
http://test.com/komu/two - GOOD!

"one" have 2 nodes "Skazki": ab, bb
"two" have 2 nodes "Skazki": cc, cd

issues module ??

Hi guys

is there an issues module available for D7 i searched but couldnt see one something simmiler to how you post issues to a module here at drupal but instead of a module i would like it for users to post problems with my site etc,etc

need help to theme a form in drupal 7 [solved]

hi guys

i,ve searched around but couldnt find out how to accomplish this with D7 in D6 i had

<?php

function mymodule_form_award ($form, &$form_state) {

$checkboxes = array();
//changed below to meet D7 way
$rows = "SELECT * FROM awards WHERE awardtype='small'"; // this is a typical query from the node table to get some info about nodes
$result = db_query($rows);
foreach($result as $row)// = db_fetch_array($rows)) // we loop through the results
{
$checkboxes[$row->AWARD_ID] = ''; // a blank value is given so that the checkboxes have no title and are just rendered as a blank checkbox
$form['DESCRIPTION_display'][$row->AWARD_ID] = array('#value' => $row->DESCRIPTION);
$form['DESCRIPTION_' . $row->AWARD_ID] = array ("#type" => "value", "#value" => $row->DESCRIPTION);
$form['award_imag_display'][$row->AWARD_ID] = array ("#value" => $row->award_imag);
$form['award_imag_' . $row->AWARD_ID] = array ("#type" => "value", "#value" => $row->award_imag);
$form['reason'][$row->AWARD_ID] = array('#type' => 'textfield', '#required' => True, '#maxlength' => 255, '#size' => 100, '#value' => $row->reason,'#default_value' => '');
};

$form['date'] = array(
'#title' => t('Date of award'),
'#type' => 'date',
'#description' => t('Enter the Date of awardl'),
'#required' => TRUE,

"HTTP request status Fails"

in an earlier query, i was given the following broad instructions..

* set up a database
* import the .sql dump which comes along with your export
* adjust settings.php to point to that database
* verify your file structure and permissions

ive downloaded and installed acquia-drupal-stack succesffully. i think i've done everything except the 3rd part..

i've updated my settings.php to

Drupal 7 on Debian Lenny (incl. Backports) or Squeeze?

Does Drupal 7 work on Debian Lenny (incl. Backports) or Squeeze without recompile PHP?

Checking access to node filter format

My module checks if the user has access to the filter format.

I used to do this in Drupal 6

<?php
if (filter_access($node->filter)) {
?>

Now in Drupal 7 I am a bit lost.

I'm doing this at the moment:

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x