2
カスタムモジュールからテンプレートファイルに変数を渡すにはどうすればよいですか?
カスタムモジュールからテンプレートファイルに変数を渡す最も簡単な方法を知る必要があります。custom.moduleを作成し、custom.tpl.phpをモジュールフォルダーに配置しました。 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() …
8
theming