view dnd.install @ 8:b9cd179a30a8

Use user session for the drupal_http_request requesting the library. By default, drupal_http_request runs in a sandbox environment, thus the request doesn't have any idea about the current user. This in turn means that the request on the library is performed as an anonymous user, who may not have appropriate credentials to access the library.
author Franck Deroche <franck@defr.org>
date Wed, 01 Apr 2009 15:49:44 +0200
parents 5a44c430b7ac
children
line wrap: on
line source
<?php

/**
 * Implementation of hook_schema().
 */
function dnd_schema() {
  $schema = array();
  $schema['dnd'] = array(
    'description' => t('Associates library sources with textareas.'),
    'fields' => array(
      'textarea' => array('type' => 'varchar', 'not null' => TRUE),
      'source' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE),
      'settings' => array('type' => 'text', 'default' => ''),
    ),
    'primary key' => array('textarea'),
  );
  return $schema;
}