码迷,mamicode.com
首页 > 其他好文 > 详细

Drupal 主题的表现形式

时间:2017-07-23 21:01:27      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:process   lin   div   script   turn   views   exist   line   var   

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 主题的表现形式

标签:process   lin   div   script   turn   views   exist   line   var   

原文地址:http://www.cnblogs.com/wzzkaifa/p/7225689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!