В файле template.php я вставил следующий код: я нашел в Интернете учебник, который дает код, но я не совсем понимаю, как заставить его работать.
Я скопировал приведенный ниже код и вставил его в template.php из темы HTML5_base .Я продублировал файл page.tpl.php и создал пользовательские страницы - page-gallery.tpl.php и page-article.tpl.php .Я вставил какой-то текст в файлы, просто вижу, что перешел на страницы с изменениями.Похоже, что Drupal не распознает gallery.tpl.php и page-article.tpl.php.
В файле template.php имеются следующие функции:
html5_base_preprocess_page ()
html5_base_preprocess_node ()
html5_base_preprocess_block ()
В учебном пособии используются эти функции : * 1033p * 10_prate_plate_phrate_plate
phptemplate_preprocess_block ()
phptemplate_preprocess_node ()
function phptemplate_preprocess_page(&$vars)
{
//code block from the Drupal handbook
//the path module is required and must be activated
if(module_exists('path'))
{
//gets the "clean" URL of the current page
$alias = drupal_get_path_alias($_GET['q']);
$suggestions = array();
$template_filename = 'page';
foreach(explode('/', $alias) as $path_part)
{
$template_filename = $template_filename.'-'.$path_part;
$suggestions[] = $template_filename;
}
$vars['template_files'] = $suggestions;
}
}
function phptemplate_preprocess_node(&$vars)
{
//default template suggestions for all nodes
$vars['template_files'] = array();
$vars['template_files'][] = 'node';
//individual node being displayed
if($vars['page'])
{
$vars['template_files'][] = 'node-page';
$vars['template_files'][] = 'node-'.$vars['node']->type.'-page';
$vars['template_files'][] = 'node-'.$vars['node']->nid.'-page';
}
//multiple nodes being displayed on one page in either teaser
//or full view
else
{
//template suggestions for nodes in general
$vars['template_files'][] = 'node-'.$vars['node']->type;
$vars['template_files'][] = 'node-'.$vars['node']->nid;
//template suggestions for nodes in teaser view
//more granular control
if($vars['teaser'])
{
$vars['template_files'][] = 'node-'.$vars['node']->type.'-teaser';
$vars['template_files'][] = 'node-'.$vars['node']->nid.'-teaser';
}
}
}
function phptemplate_preprocess_block(&$vars)
{
//the "cleaned-up" block title to be used for suggestion file name
$subject = str_replace(" ", "-", strtolower($vars['block']->subject));
$vars['template_files'] = array('block', 'block-'.$vars['block']->delta, 'block-'.$subject);
}