zoukankan      html  css  js  c++  java
  • [Drupal] Note of useful module

    cck (embed in the kernal in drupal 7) 

    The Content Construction Kit allows you to add custom fields to nodes using a web browser. 

    views 

    The Views module provides a flexible method for Drupal site designers to control how lists and tables of content (nodes in Views 1, almost anything in Views 2) are presented. Traditionally, Drupal has hard-coded most of this, particularly in how taxonomy and tracker lists are formatted.
    This tool is essentially a smart query builder that, given enough information, can build the proper query, execute it, and display the results. It has four modes, plus a special mode, and provides an impressive amount of functionality from these modes.

    Among other things, Views can be used to generate reports, create summaries, and display collections of images and other content. 

    panels

    The Panels module allows a site administrator to create customized layouts for multiple uses. At its core it is a drag and drop content manager that lets you visually design a layout and place content within that layout. Integration with other systems allows you to create nodes that use this, landing pages that use this, and even override system pages such as taxonomy and the node page so that you can customize the layout of your site with very fine grained permissions. 

    context 

    Context allows you to manage contextual conditions and reactions for different portions of your site. You can think of each context as representing a "section" of your site. For each context, you can choose the conditions that trigger this context to be active and choose different aspects of Drupal that should react to this active context.

    Think of conditions as a set of rules that are checked during page load to see what context is active. Any reactions that are associated with active contexts are then fired.  

    pathauto

    The Pathauto module automatically generates path aliases for various kinds of content (nodes, categories, users) without requiring the user to manually specify the path alias. This allows you to get aliases like /category/my-node-title.html instead of /node/123. The aliases are based upon a "pattern" system which the administrator can control.

    Pathauto depends on the Token module. 

    Tagging

    Used to handle the tag taxonomy. 

    i18n (internationalization)

    This is a collection of modules to extend Drupal core multilingual capabilities and be able to build real life multilingual sites. Some features:
    Taxonomy translation (both, per language terms and translatable terms)
    Multilingual variables
    Multilingual blocks (control visibility per language and translate title and content)

    Language selection (when you switch the site language you'll see only the content for that language) 

  • 相关阅读:
    c++中sort()及qsort()的用法总结
    POJ的层次感分类
    DFS练习-HDU1010
    Dijkstra&&Floyd
    DFS练习一---HDU 1342
    快速幂取模算法
    树的实现
    C++的队列和pair
    BFS练习-POJ.2386
    Codeforces 1139E(二分图最大匹配)
  • 原文地址:https://www.cnblogs.com/davidhhuan/p/1925765.html
Copyright © 2011-2022 走看看