Drupal 主题的表现形式

Posted wzzkaifa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal 主题的表现形式相关的知识,希望对你有一定的参考价值。

1、template.php

/**
 * Implements hook_theme().
 */
function yourtheme_theme($existing, $type, $theme, $path) {
  $base = array(
    ‘render element‘ => ‘form‘,
    ‘path‘ => drupal_get_path(‘theme‘, ‘yourtheme‘) . ‘/templates/forms‘,
  );
  return array(
    ‘commerce_checkout_form_checkout‘ => $base + array(
      ‘template‘ => ‘commerce-checkout-form-checkout‘,
    ),
  );
}
/**
 * Preprocessor for commerce_checkout_form_checkout theme.
 */
function yourtheme_preprocess_commerce_checkout_form_checkout(&$variables) {
  /* Add or modify your variables */
}

2、/templates/forms/commerce-checkout-form-checkout.tpl.php

// Render or hide parts of $form: var_export($form);
// Example given:
hide($form[‘title‘]);
print render($form[‘first‘]);
// Render remaining form elements as usual.
print drupal_render_children($form);

以上是关于Drupal 主题的表现形式的主要内容,如果未能解决你的问题,请参考以下文章

Javascript代码片段在drupal中不起作用

Drupal 6 视图 2:PHP 片段

自定义字段的drupal主题化视图:PHP代码

视觉工作室代码中的 Drupal 8

主题为Drupal 7的Ubercart“/ cart”页面

Drupal 7:嵌入视图选择主题