Modules
Stickybeak
This module allows users with the correct permissions to browse the sessions table and view the session information associated with each session.
Form
This project is the development space to prepare #597280: Introduce form registry to fix various problems and increase security during Drupal 7, to come up with a working solution for D8.
This code has pre-alpha quality and we will rewrite it soon. Do not use on production sites.
Form module closes a gap in Drupal's framework. While we have CCK and Views for contents, Blocks and Panels for regions, and similarly configurable solutions for other things, we do not have a module to configure and control forms.
The primary purpose of this module was to have a "form spy"-alike helper that aids in retrieving and selecting form ids for modules like Compact forms, Journal, #translatable, or Fivestar. However, it quickly turned out that it could serve as general purpose API for most modules that implement hook_form_alter().
The first example implementation therefore exists in Vertical Tabs module.
For this reason, Form module does nothing on its own. It allows other modules to implement hook_form_info() to allow administrative users to configure and enhance any form in Drupal.
Installation
Wikify
Allows users to mark individual pieces of content as publicly editable: useful when the "Edit all..." permission for a given content type is too broad.
druTalk
druTalk is a gtalk-like IM module. It works together with the User Relationships module and the Services module. With druTalk, drupal users can chat with their own friends of the same site. druTalk can be used in the following cases:
druTalk is a Flex application. It leverages the adobe stratus technology which enables peer to peer communications between flash players. So, the use of druTalk will not increase the server load. However, as many other p2p applications, druTalk (adobe stratus exactly) doesn't work in proxy environments.
Demonstration:
1. Go to drutalk.com
2. Register two users
3. Add each other as a friend
4. Login both users with different browsers (eg. IE and FireFox)
5. Launch druTalk and talk.
Dependencies:
Services
AMFPHP
User Relationships
Flash Player 10
Installation:
1. Download druTalk and enable it as most other drupal modules.
2. Configure the services module and make sure it works ( please reference services module's doc).
3. Configure the User Relationships module, create relationships and add yourself some 'friends'.
Brochure Install Profile Modules
Custom code for the Brochure Install profile. It will be downloaded automatically as part of the distribution. You should have little use for this code outside of the install profile.
Dropdown Tabs
Overview
Dropdown Tabs does only one thing: It takes the menu items that are in your primary and secondary tabs, and turns them into dropdown select boxes. The reason that we built this module was to help us conserve a bit of space and keep the site somewhat tidy.
Usage
- Turn on the module at admin/build/modules.
- Navigate to admin/build/block and configure the Dropdown Tabs block. Note that the Dropdown Tabs block content may float left, right, or not at all.
- Place the Dropdown Tabs block into a region OR inject the block manually into a template file with the following code:
<?php
$block = module_invoke('dropdown_tabs', 'block', 'view');
print $block['content'];
?>