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) 

  • 相关阅读:
    蓝牙搜索
    Log4cpp介绍及使用
    单独卸载vs2010帮助文档HelpView之后的独立安装教程
    C++Builder RAD Studio XE, UTF-8 String 转换为 char * 字符串的最简单方式, 常用于sqlite3开发
    vs2012 MSDN帮助文档离线包下载安装方法
    关于OBJ/LIB格式,我以前有个总结
    关于C++ const 的全面总结
    在 C++Builder 工程里调用 DLL 函数
    c++builder调用VC的dll以及VC调用c++builder的dll
    C++Builder及VC的库相互调用
  • 原文地址:https://www.cnblogs.com/davidhhuan/p/1925765.html
Copyright © 2011-2022 走看看