shorten_cs.install in Shorten URLs 7
Same filename and directory in other branches
(Un)installs the Shorten URLs Custom Services module.
File
shorten_cs.installView source
<?php
/**
* @file
* (Un)installs the Shorten URLs Custom Services module.
*/
/**
* Implements hook_schema().
*/
function shorten_cs_schema() {
$schema = array();
$schema['shorten_cs'] = array(
'description' => 'Stores custom services for the Shorten URLs module.',
'fields' => array(
'sid' => array(
'type' => 'serial',
'not null' => TRUE,
'unsigned' => TRUE,
'description' => 'The Service ID.',
),
'name' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The name of the URL shortening service.',
),
'url' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The API endpoint URL.',
),
'type' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The type of API response.',
),
'tag' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'The XML tag or JSON key identifying the shortened URL from the API response, if applicable.',
),
),
'indexes' => array(),
'unique keys' => array(
'name' => array(
'name',
),
),
'primary key' => array(
'sid',
),
);
return $schema;
}
Functions
Name | Description |
---|---|
shorten_cs_schema | Implements hook_schema(). |