main.php
,「樣板前置符」就是main
(將檔名去掉.php
即可)
$op_prfix = "自訂樣板前置符";
templates/
下op_樣板前置符_xxx.tpl
等四個實體檔案為op_main_xxx.tpl
,這樣才能和上述的「樣板前置符」匹配,才能正確找到檔案以便輸出畫面。templates/
下op_main_xxx.tpl
等四個檔案內容中的<{$模型資料表_xxx}>
為<{$my_action_xxx}>
,如此,才能接收框架自動產生的內容以呈現在畫面上。my_action
資料表做成模型物件:
$Model = new TadModData('my_action');
$Model
可以自行修改,例如改成$Action
可能更容易懂(有用到此物件的地方也都記得改)action
資料表的主索引(Primary Key)「action_id」templates\op_main_create.tpl
)templates\op_main_index.tpl
)templates\op_main_show.tpl
)templates\op_main_edit.tpl
)