Drupal's core module is the most important component of http://www.aliyun.com/zixun/aggregation/33847.html ">drupal, which is the bearer of Drupal's main function." Drupal comes with 33 modules, which basically covers all the features the current Web site should have: User management, blogs, forums, reviews, photo albums, log management, and Web 2.0 features like news aggregation. These modules are included with Drupal's download package. Some are turned on, some are not turned on, and when a function needs to be used, first see if Drupal's core module has a doorway to implement this function; They are well tested, compliant with various encodings and compatible with mainstream browsers. If so, use the core module as a priority.
1, Drupal tag module Quik tabs
Module Introduction:
This module can produce a variety of different label switching effects, but the label effect of these styles can only be shown in the form of block.
QuickTabs default is to use the mouse click event to touch the tab between the switch, if it is to let the mouse on the top of the time also can show, that how to do?
I think it should be easy to achieve. Open the configuration file with this question and see if you can find something. Yes, I found it. It is true that such a requirement cannot be achieved. In the Quicktabs.js file in Quicktabs\js, there is one line of jquery code:
$ (this). bind (' click ', Quicktabsclick);
Change this line of jquery code
$ (this). bind (' mouseover ', Quicktabsclick);
.
After the change, really can achieve such a request. However, there has been a mistake, that is, when the mouse passed a label all out, how to do? How can the user click the mouse, but also to poor students the same effect. Is it possible to fix two events together? I try to do this by adding two events:
$ (this). bind (' click ', Quicktabsclick);
$ (this). bind (' mouseover ', Quicktabsclick);
2. Drupal Content Access Module
Module Introduction:
This module focuses on the management of permissions for Drupal node content.
After the download is unpacked, put it under Sites/all/modules and enable two module. Then, edit the content type in Admin/content/types, there will be a new label "Access control." Edit content permission settings to suit your needs.
This module can also be applied to multiple node access modules (Advanced configuration), more detailed configuration, you can refer to the Readme file.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.