Devo conoscere il metodo più semplice per passare la variabile dal modulo personalizzato al suo file modello. Ho creato custom.module e inserito custom.tpl.php nella cartella del modulo.
function custom_menu(){
$items = array();
$items['custom'] = array(
'title' => t('custom!'),
'page callback' => 'custom_page',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
return $items;
}
function custom_page() {
$setVar = 'this is custom module';
return theme('custom', $setVar);
}
ho aggiunto la funzione tema ma non funziona, nessuno può suggerirmi cosa c'è di sbagliato in questo codice
function theme_custom($arg) {
return $arg['output'];
}
function custom_theme() {
return array(
'Bluemarine' => array(
'variables' => 'output',
'template' => 'Bluemarine',
),
);
}