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

Auto Tagging

This project allows for flexible auto tagging of your content types via a pluggable interface that makes use of 3rd party services to provide the tag context.

As a point of disambiguation, this module differentiates itself from the AutoTag module in that it doesn't rely on pre-defined vocabularies. Instead, this module sends node content through any number of third party services to determine what the content is about.

*** This module is currently in beta. While you can use it in a production environment, your mileage may vary. Feedback and issues can be sent to the issue queue, which is actively monitored.

Service Integration

TagThe.net integration

  • Install the Autotagging API module
  • Install the Autotagging TagThe.net module
  • Configure at least one tag-style Vocabulary

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.

Pages

Subscribe with RSS Subscribe to RSS - Developer tools