2016-02-02 2 views

ответ

2

определить тему с помощью hook_theme и указать путь шаблона в нем, как показано ниже

function hook_theme() { 
    $theme = array(
    'custom_template' => array(
    'template' => '/templates/mytemplate', 
)); 
    return $theme; 
} 

Затем в hook_block_view сделать ниже

function myblock_block_view($block_name = '') { 
    if ($block_name == 'myblock') { 
    $block['content'] = theme('custom_template'); 
    return $block; 
    }  
} 
Смежные вопросы