Considered feature-complete by its maintainers.

CKEditor Link OG

This module integrates the internal linking capability of (the awesome) CKEditor Link module with Organic Groups.

File Download Form

This module allows administrators to specify that a user must fill out a form (provide their e-mail address) in order to download a file uploaded using filefield.

Stripe

Provides Stripe integration with Drupal. All are welcome to help out.

Core development

Note: this project is now owned by @tim.plunkett, but was created by @chx. New maintainers are always welcome.

This is the profile i use for core development. Like minimal but adds two node types and simpletest. Takes 18% more time than minimal. Standard is double of minimal so that's not an option.

Simple Context block classes

Literally from the .info:

Assign classes to specific blocks in specific contexts. Be even more specific with more freedom.

Apache Solr Custom Fields

apache solr index mechanism

Apache Solr module helps you to integrate the ApacheSolr to Drupal, but this module doesn't include all CCK Fields.

Here are 2 HOOKs to add your custom fields to Apachesolr,

1. HOOK_apachesolr_cck_fields_alter
arguments: &$mappings,
add your field_name to this array, and return.

$mapping[‘per-field’][$field_name] =array('callback' => '', 'index_type' => 'string');

2. HOOK_apachesolr_update_index
arugments: $document, $node, $namespace.
so you can add any field to the $document.

Use Apachesolr Custom Fields to get out of any custom code to do this, what you need to is go to administration page and add some settings to determine which field need to be indexed or not.

The mechanism is to store all cck fields settings into database, and add your custom fields settings into database also.
Further more, this module convert those 2 hooks into the same one, and the same interface.
When you go to the page, index.php?admin/settings/apachesolr/custom-fields, there is a list of cck fields, and a link you can add your custom field. Go each field settings page on the page, you will get a page which contains more description on the page.

Apache Solr Indexing Mechanism

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only