Tôi cần biết phương pháp đơn giản nhất để chuyển biến từ mô đun tùy chỉnh sang tệp mẫu của nó. Tôi đã tạo custom.module và đặt custom.tpl.php trong thư mục mô-đun.
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);
}
Tôi đã thêm chức năng chủ đề nhưng nó không hoạt động, có ai có thể gợi ý cho tôi những gì sai với mã này không
function theme_custom($arg) {
return $arg['output'];
}
function custom_theme() {
return array(
'Bluemarine' => array(
'variables' => 'output',
'template' => 'Bluemarine',
),
);
}