カスタムモジュールからそのテンプレートに変数を渡す最も簡単な方法を知る必要があります
私はcustom.moduleを作成し、custom.tpl.phpをモジュールフォルダカスタムモジュールからtplに変数を渡す方法
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);
}
私はテーマ機能を追加したが、それは動作していない、いずれかが、このコード
function theme_custom($arg) {
return $arg['output'];
}
function custom_theme() {
return array(
'Bluemarine' => array(
'variables' => 'output',
'template' => 'Bluemarine',
),
);
}
おかげで、私はBluemarineのテーマを使用してメートル。あなたは上に投稿したコードに関してサンプルコードを投稿できますか? plzのヘルプ –
親愛なるyvan私は本当にあなたがカスタムテーマに変数を渡すことができますか? –