Maintainers strive to actively monitor issues and respond in a timely manner.

Outbrain Integration

This module allows you to integrate with Outbrain service.

Address field Norwegian pid

Adds address field support for the Norwegian personal identification number (PID).
The PID is required by customs when shipping goods into Norway.

The module adds an address format called "Norwegian personal identification number".
The format uses the administrative_area field (not used for Norwegian addresses).

gameguyz_cropimage

Custom Form Crop Image

You can use image crop in your custom form.

Please following these steps:

>1. Download and install this module
>2. On your custom form, add these code:

  if (module_exists('gameguyz_cropimage')) {
    $element_info = element_info('managed_file');
    $form['crop_image_test'] = array(
      '#title' => t('Crop Image Test'),
      '#description' => t('Crop image after upload'),
      '#type' => 'managed_file',
      '#default_value' => variable_get('crop_image_test_fid', ''),
      '#upload_location' => 'public://',
      '#process' => array_merge($element_info['#process'], array('gameguyz_cropimage_process', 'gameguyz_cropimage_beauty_settings_process')),
      '#file_value_callbacks' => array('gameguyz_cropimage_widget_value'),
    );
  }

>3. In form submit function:

  if ($form_state['values']['crop_image_test'] != 0) {
    $crop_info = variable_get('gameguyz_cropimage_info', array());
    $fid = $form_state['values']['crop_image_test']['fid'];
    $fid = empty($crop_info[$fid])?$fid:$crop_info[$fid]['fid_new'];
    variable_set('crop_image_test_fid', $fid);
  }

>4. Change crop box size: gameguyz_cropimage/gameguyz_cropimage.module
gameguyz_cropimage_beauty_settings_process()

Project page:

The project page can be found here: http://drupal.org/sandbox/meadhu/1870050

merchantware

Creating payment gateway compatible with drupal commerce that utilizes the various Merchant Warehouse gateways https://s

Content Create Access

Allows you to specify for each user which node types it may create.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained