Empower developers with tools that assist with developing and debugging the frontend or backend of the site.

OG username helper

This module try to help Organic Groups(OG) administrators to add site users to their OG by providing an autocomplete input(like the one you

Tokenize Request Parameters

A Drupal 7 development release is available. Everything should work the same as the D6 version except that tokens now use the new chained tokens syntax as specified in the D7 native tokens API.

The Tokenize Request Parameters module is intended to provide means to display parameters that are passed to a page either in the URL (GET method) or from a form post (POST method). In cases where you might direct your users to a third party transaction site, such as a payment processor or other transactional service and want to be able to display transactional data passed back from that third party site (e.g. a confirmation number, order number, final price etc.) back to your user then Tokenize Request Parameters will allow you to display that information anywhere within your pages.

Query Monitor

A query monitor/logger module that utilizes devel module to save the SQL queries used for configuring Drupal.

Services OOP

Services OOP allows declarative definition of resource-based services through class declarations.

Example

This is a incomplete example of how a resource could be implemented.


/**
* Class that defines the event resource
*
* @Relationship(name='occasions', controller='retrieveOccasions')
*/
class EventResource {
/**
* Creates a event
*
* @param object $event ["data"]
* @return object
*
* @Access(callback='_event_resource_access', args={'create'}, appendArgs=true)
*/
public static function create($event) {
// Do your thing here
}

/**
* Retrieves a event
*
* @param int $nid ["path","0"]
* The nid of the event to get
* @return object
*
* @Access(callback='_event_resource_access', args={'view'}, appendArgs=true)
* @Model(class='ResourceFeedModel', implementation='EventResourceFeedModel')
*/
public static function retrieve($nid) {
// Do your thing here
}

/**
* Updates a event
*
* @param int $nid ["path","0"]
* The nid of the event to update
* @param object $event ["data"]
* The event object
* @return object
*
* @Access(callback='_event_resource_access', args={'update'}, appendArgs=true)
*/
public static function update($nid, $event) {
// Do your thing here
}

/**
* Deletes a event
*

Filter allowed protocols

screenshot_041.png

A small module that exposes an interface for the allowed protocols used in filter_xss_bad_protocol().

Pages

Subscribe with RSS Subscribe to RSS - Developer tools