PHP Drupal 5.x page.tpl.php模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal 5.x page.tpl.php模板相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">

<head>
  <title><?php print $head_title ?></title>
  <?php print $head ?>
  <?php print $styles ?>
  <?php print $scripts ?>
  <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
</head>

<body>

<!-- logo -->
<?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
<!-- site name -->     
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
<!-- sloagan -->
<?php if ($site_slogan) { ?><?php print $site_slogan ?><?php } ?>

<!-- primary links -->      
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
<!-- secondary links -->      
<?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>

<!-- search -->      
<?php print $search_box ?>

<!-- header --> 
<?php print $header ?>

<!-- mission -->
<?php if ($mission) { ?><?php print $mission ?><?php } ?>

<!-- breadcrumb -->
<?php print $breadcrumb ?>

<!-- content with headline and tabs -->
<h1 class="title"><?php print $title ?></h1>
<div class="tabs"><?php print $tabs ?></div>
<?php print $help ?>
<?php print $messages ?>
<?php print $content; ?>

<!-- sidebars --> 
<?php if ($sidebar_left) { ?>
	<?php print $sidebar_left ?>
<?php } ?>

<?php if ($sidebar_right) { ?>
  <?php print $sidebar_right ?>
<?php } ?>

<!-- feed icon --> 
<?php print $feed_icons; ?>

<!-- footer --> 
<?php print $footer_message ?>


<!-- and finally close the document like this: -->

<?php print $closure ?>
</body>
</html>

以上是关于PHP Drupal 5.x page.tpl.php模板的主要内容,如果未能解决你的问题,请参考以下文章

php 在drupal 8中找到名字: - Drupal 8

php 在drupal 8中以编程方式创建词汇和术语: - Drupal

Drupal 6 视图 2:PHP 片段

Drupal,在自定义 php 页面上嵌入视图块/结果

PHP Drupal输出真正的PHP

增加 PHP 内存限制(Apache、Drupal6)