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

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.

Menu Slice

Menu Slice screenshot

What can I do with this module?

  • Create menus from subtrees of existing menus.
  • Clone menu subtrees to an existing menu.

When should I use this module?

Simple Facebook for Drupal

Simple Facebook for Drupal allows users to quickly integrate Facebook into their Drupal site by bootstrapping the JS SDK as part of Drupal, and allowing users to be created from Facebook accounts.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained