Я построил модуль с именем ap_news, и он создает несколько блоков. У меня есть файлы пользовательских шаблонов блоков в "sites / all / modules / custom / ap_news / theme /". Все это работает, но я хочу, чтобы дизайнеры могли переопределить эти файлы TPL, поместив их копию в "sites / mysite.com / themes / theme428 / templates / block" или в "sites / mysite.com / themes / theme428 / шаблоны / ap_news»
Поэтому я бы хотел, чтобы Drupal сначала посмотрел в папку с темой сайтов, а если не нашел, то загляни в папку с моими темами. Я пробовал, но он использует только тот, что в моем модуле.
Вот мой блок и код темы:
function ap_news_block($op = 'list', $delta = 0, $edit = array()) {
switch ($op) {
case "list":
// Generate listing of blocks from this module, for the admin/block page
$block = array();
$block['ap_news_national_news']['info'] = t('National news');
$block['ap_news_national_news']['cache']=BLOCK_NO_CACHE;
$block['ap_news_world_news']['info'] = t('World news');
$block['ap_news_world_news']['cache']=BLOCK_NO_CACHE;
return $block;
break;
case "view":
switch ($delta) {
case 'ap_news_national_news': // block-ap_news_national_news.tpl.php
// Generate our block content
$html = ap_news_nationalNews();
$block['subject'] = 'National News';
$block['content'] = $html;
$data = new stdClass(); $data->module = 'ap_news'; $data->content = $html; $data->delta = $delta; $data->subject = 'National News';
$block['content'] = theme('block-'.$delta, $data);
break;
//--------------------
case 'ap_news_world_news': // block-ap_news-world_news.tpl.php
$data = ap_news_allNews_block('WORLD', APNEWS_CID_WORLD_NEWS, 4);
$block['subject'] = 'World News';
$block['content'] = theme('block-ap_news-all_news', $data, base_path().APNEWS_PATH_WORLD_NEWS, 'World News', 'worldNews');
break;
}
}
return $block;
}
function ap_news_theme() {
return array(
'block-ap_news-all_news' => array(
'template' => 'theme/block-ap_news-all_news',
'arguments' => array('data' => NULL, 'path' => NULL, 'sectionName' => NULL, 'sectionId' => NULL),
),
'block-ap_news_national_news' => array(
'template' => 'theme/block-ap_news_national_news',
'arguments' => array('block' => NULL),
),
);
}
UPDATE:
Я создал функцию для поиска файлов.
'block-ap_news-national_news' => array(
'template' => 'block-ap_news-national-news',
'arguments' => array('block' => NULL),
'path' => ap_news_templatePath('block', 'block-ap_news-national-news', 'ap_news'),
),
/*
* Find the template paths.
* First look in the sites custom theme template folder (/themes/theme428/templates/ap_news),
* then in sites normal theme template folder,
* then in the modules folder
*/
function ap_news_templatePath($type, $template, $custom=''){
$siteThemePath = path_to_theme() . '/templates/' . $type. '/';
$siteCustomThemePath = path_to_theme() . '/templates/' . $custom. '/';
$moduleThemePath = drupal_get_path('module', 'ap_news') . '/theme/';
if(file_exists($siteCustomThemePath . $template . '.tpl.php')){
return $siteCustomThemePath;
}elseif(file_exists($siteThemePath . $template . '.tpl.php')){
return $siteThemePath;
}else{
return $moduleThemePath;
}
}