Drupal core has the option to force users to use the preview button, before being able to submit content. This option is pretty effective to prevent certain bots from spamming your site. However, once this option is enabled, it affects all users, including trusted users and site administrators.
This module adds a new permission that may allow privileged users bypass forced post preview, both for content and comments.
Generate a barcode image on the fly. It supports EAN-13,EAN-8,UPC-A,UPC-E,ISBN ,2 of 5 Symbologies(std,ind,interleaved),postnet,codabar,code128,code39,code93 symbologies.
Drupal allows you to define a different theme for administration pages (Administer -> Site configuration -> Administration theme). By default this only applies to pages with a path starting with 'admin' and content editing pages.
The Administration theme module adds a few more option to the default configuration page like :
- Use administration theme for batch processing
- Use administration theme for code reviews
- ...
Some of these pages will only appear if they apply to your installation, i.e. you have the module installed which generates these pages.
You also have the option to define a custom set of Drupal paths or aliases to apply the administration theme for.
OG Node Approval offers content review between group members allowing them to approve or reject content. When creating or updating content simply choose the audience for the content, save the node, and the module will insert group members from those respective audiences into the a node approval table.
After each member approves the content OG Node Approval will change the status of the node if configured to do so. It will either do nothing, use a separate node_status table, or use the node.status column to publish the node.
Output-wise, OG Node Approval displays the status of each group member for that content, and embeds a form within the content to allow group members easy access to change their status. Once they change their initial 'pending' status, they can no longer change it back. Also, users may publish comments when they reject content.
OG Node Approval integrates with Views 2 to allow fields, filters, and sorting based on either user node approval status or the overall status of the node.
This module was developed for a client of Kosada, Inc.
This is a CCK based module that also depends on the GMap module. This module offers a field GMap Macro field type.
A module for creating an AJAX content display - loading new content as you scroll to the bottom of the page.
More informatipn and working examples to come,
How to use the module:
Simply call the endless_page_create() function, and define an array of node IDs to use. View the module source for more information and examples.
Example:
<?php // Get all nodes of type Story with status published$result = db_query("SELECT nid FROM {node} WHERE status = 1 AND type = 'story' ORDER BY nid DESC"); $nid = array();$i = 0;// Add all nodeIDs to an arraywhile( $n = db_fetch_object($result) ) { $nid[$i] = $n->nid; $i++;} // Create the endless page using default settingsreturn endless_page_create($nid); ?>
The module uses jQuery, and requires the jQ module.
Note:
Activating the module will not make any change to your site. You have to manually call the function mentioned above to create the endless page.
This module allows users to specify a preferred bandwidth for viewing videos.
Features include :
- Block with links to choose the preferred bandwidth
- Option in the user profile to change the bandwidth
- Name of the bandwidth is included at the beginning of all intern URLs (http://www.example.com/lo/page for low bandwidth setting)
- Support for anonymous users
This module is useless alone. You don't need to install it if you haven't been asked to do so.
This module is developed by Koumbit and sponsored by Isuma.tv.
The Format number module provides a method to configure number formats (site default and user defined) with configurable decimal point and thousand separators.
The function format_number($number, $decimals = 0) can be used by other contributed or custom modules to display numbers accordingly.
You should not install this module unless it is required by another module.
External references:
- PHP manual: number_format().
- Wikipedia: Decimal separator.