欢迎各位兄弟 发布技术文章
这里的技术是共享的
template.php 文件中
function bartik_clone_preprocess_html(&$variables)
{
...............
if($_GET['q'] == 'list_cs_computers_format'){
$head_title = array(
'title' => '厂商电脑工控机出NPI格式化清单',
'name' => check_plain(variable_get('site_name', 'Drupal')),
);
$variables['head_title'] = implode(' | ', $head_title);
}
if($_GET['q'] == 'list_bg_computers_format'){
$head_title = array(
'title' => '办公电脑出NPI列表',
'name' => check_plain(variable_get('site_name', 'Drupal')),
);
$variables['head_title'] = implode(' | ', $head_title);
}
...............
}