Formularausgabe anpassen
Eingetragen von axelf (110)
am 29.11.2009 - 17:39 Uhr in
am 29.11.2009 - 17:39 Uhr in
Hi,
ich habe mir ein kleines Modul gebastelt.
Leider wird die funktion theme_testmodul_form überhaupt nicht beachtet, ich erhalte immer nur die Standardausgabe des Formulars. Wie binde ich die Funktion ein, damit diese auch berücksichtigt wird? Kann ich überhaupt den erzeugten quellcode durch meinen ersetzen? Ein div innerhalb eibes span-tags ist nicht so toll...
<?php
function testmodul_page(){
$db = array('name'=>'Name','vorname'=>'Vorname');
$formular = drupal_get_form('testmodul_form');
$output = theme('testmodul', $db, $formular);
return $output;
}
function testmodul_form(){
$form['foo'] = array(
'#type' => 'textfield',
'#title' => 'Name',
);
return $form;
}
function theme_testmodul_form($form){
$output = '';
$output .= '<div class="foo">';
$output .= drupal_render($form['foo']);
$output .= '</div>';
$output .= drupal_render($form);
return $output;
}
?>
- Anmelden oder Registrieren um Kommentare zu schreiben
Du musst hook_theme
am 29.11.2009 - 22:09 Uhr
Du musst hook_theme implementieren: http://api.drupal.org/api/function/hook_theme
--------------
Blog www.freeblogger.org: Deutscher IRC-Channel: irc.freenode.net #drupal.de ... Jabber-me: dwehner@im.calug.de
http://kupferbau.ernst-bloch-uni.de/
hook_theme hatte ich schon
am 29.11.2009 - 22:30 Uhr
hook_theme hatte ich schon implementiert, aber vielleicht kannst du mir noch sagen wo ich noch was angeben muss.
Bin leider noch neu bei Drupal dabei und ich blick da noch nicht so 100%-ig durch. Würde gern das Markup komplett austauschen.
Hier mal das komplette Script:
<?php
/**
* Implentation of hook_menu
*/
function testmodul_menu(){
$items = array();
$items['testmodul'] = array(
'title' => 'Mein erstes kleines Drupal-Modul',
'description' => 'Mein erstes Modul',
'page callback' => 'testmodul_page',
'access arguments' => array('access content'),
'type' => MENU_SUGGESTED_ITEM,
);
return $items;
}
function testmodul_page(){
$db = array('name'=>'Name','vorname'=>'Vorname');
$selectbox = drupal_get_form('testmodul_form');
$output = theme('testmodul', $db, $selectbox);
return $output;
}
/**
* Implementation of hook_theme
*/
function testmodul_theme(){
return array(
'testmodul' => array(
'template' => 'vorlage',
'arguments' => array('daten' => null,'selectbox' => null),
),
);
}
/**
* Implementation of preprocess function
*/
function template_preprocess_testmodul($tplVars){
// Daten aus Datenbank
$daten = $tplVars['daten'];
// Selectbox
$selectbox = $tplVars['selectbox'];
// Templatevariablen Datenbank
$tplVars = $daten;
// Templatvariable Selectbox
$tplVars['selectbox'] = $selectbox;
}
function testmodul_form(){
$form['foo'] = array(
'#type' => 'textfield',
'#title' => 'Name',
);
return $form;
}
function theme_testmodul_form($form){
$output = '';
$output .= drupal_render($form['foo']);
$output .= '<div class="foo">';
$output .= '</div>';
$output .= drupal_render($form);
return $output;
}
?>
<?php /*** Implentation of
am 29.11.2009 - 22:36 Uhr
<?php
/**
* Implentation of hook_menu
<strong>/
function testmodul_menu(){
$items = array();
$items['testmodul'] = array(
'title' => 'Mein erstes kleines Drupal-Modul',
'description' => 'Mein erstes Modul',
'page callback' => 'testmodul_page',
'access arguments' => array('access content'),
'type' => MENU_SUGGESTED_ITEM,
);
return $items;
}
function testmodul_page(){
$db = array('name'=>'Name','vorname'=>'Vorname');
$selectbox = drupal_get_form('testmodul_form');
$output = theme('testmodul', $db, $selectbox);
return $output;
}
/</strong>*
* Implementation of hook_theme
<strong>/
function testmodul_theme(){
return array(
'testmodul' => array(
'template' => 'vorlage',
'arguments' => array('daten' => null,'selectbox' => null),
),
'testmodul_form' => array(
'arguments' => array('form' => NULL),
),
);
}
/</strong>*
* Implementation of preprocess function
*/
function template_preprocess_testmodul($tplVars){
// Daten aus Datenbank
$daten = $tplVars['daten'];
// Selectbox
$selectbox = $tplVars['selectbox'];
// Templatevariablen Datenbank
$tplVars = $daten;
// Templatvariable Selectbox
$tplVars['selectbox'] = $selectbox;
}
function testmodul_form(){
$form['foo'] = array(
'#type' => 'textfield',
'#title' => 'Name',
);
return $form;
}
function theme_testmodul_form($form){
$output = '';
$output .= drupal_render($form['foo']);
$output .= '<div class="foo">';
$output .= '</div>';
$output .= drupal_render($form);
return $output;
}
?>
--------------
Blog www.freeblogger.org: Deutscher IRC-Channel: irc.freenode.net #drupal.de ... Jabber-me: dwehner@im.calug.de
http://kupferbau.ernst-bloch-uni.de/
Hi, jetzt kommt immer diese
am 29.11.2009 - 23:00 Uhr
Hi,
jetzt kommt immer diese Meldung: Fatal error: Only variables can be passed by reference... und damit ist diese Zeile gemient:
$output .= drupal_render($form['foo']);
Ist es denn korrekt so:
function testmodul_page(){
$db = array('name'=>'Fleischer','vorname'=>'Alexander');
$selectbox = drupal_get_form('testmodul_form');
$output = theme('testmodul', $db);
$output .= theme('testmodul_form', $selectbox);
return $output;
}