こんにちは、モジュール開発の新人です。tmpl/default.php から mod_.php に変数を渡す方法を知る必要があります。これは、参照したチュートリアルからそれを達成できなかったためです。これは私が使用した方法です:
tmpl/default.php (not the full code)
<form action="index.php" method="post" id="sc_form">
<input type="hidden" name="form_send" value="send" />
<label>Your name:</label><br/>
<input type="text" name="your_name" value="" size="40" /><br/><br/>
<label>Your question:</label><br/>
<textarea name="your_question" rows="5" cols="30"></textarea><br/><br/>
<input type="submit" name="send" value="Send" />
</form>
-----------------------------------------------------------------------------------
mod_modulename.php
$form_send = JRequest::getVar('form_send', 'notsend');
switch($form_send){
case 'send':
require(JModuleHelper::getLayoutPath('mod_<module_name>', 'sendok'));
break;
default:
require(JModuleHelper::getLayoutPath('mod_<module_name>', 'default'));
}
ご検討いただき誠にありがとうございます。これは私にとって大きな助けになるでしょう...