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

Node export

This module allows users to export nodes and then import it into another Drupal installation, or on the same site.

Using this module you can save yourself a lot of time setting up new websites that have similar nodes to websites you've already made, migrating nodes to new Drupal versions, or between development/staging/production sites.

You will need the same content types for the imports to work (unless using Feeds to import), and ideally relevant compatibility with fields, and modules.

Cronapi

Cron API is a module that allows other modules to register their cron based functions and provides an administrator interface so admins can configure when specific cron actions are actually run.

This module is currently under development, so if you find bugs.... please let me know.

The main configurations page is loaded on /admin/settings/cronapi
Currently on initial install there are no sample presets and if you want to play/use this module... you will need to create your own cron based hooks with the following API functions:
These functions are also commented out in cronapi.module

Create a preset:

<?php
/**
 * Example preset definition
 *
 * Implementation of hook_cronapi_preset
 * Allows individual modules to create presets.
 */
function cronapi_cronapi_preset() {
  return array(
    'test_preset'   => t('Test Preset'),
  );
}// end - function
?>

Call a preset (this function will be called from any module that implements this hook):

<?php
/**
* Example of preset function call
*
* Implementation of preset _test_preset hook
* this is where preset actions should take place.
*
* @param $op
* String - 'rotate', 'update', 'insert', 'delete'
* @param $preset
* The preset array structure that is being invoked.
*/
function cronapi_test_preset($op = NULL, $preset = NULL) {
switch ($op) {

At a Glance

This module simply provides a page which lists the number of nodes and comments in the Drupal database, and lists the users who have contributed nodes or comments, ordered by their total number of contributions.

Please note that this module should be considered alpha-quality at best, and should probably not be used on any production site.

AHAH Fragment

AHAH Fragment is a module which returns a specified fragment from the requested page. This allows users to create callbacks for AHAH functionality with little or no code.

Pages

Subscribe with RSS Subscribe to RSS - Developer tools