comparison modules/block/block.install @ 15:4347c45bb494 6.7

Drupal 6.7
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:32:44 +0100
parents c1f4ac30525a
children 3edae6ecd6c6
comparison
equal deleted inserted replaced
14:626fcabfa4b8 15:4347c45bb494
1 <?php 1 <?php
2 // $Id: block.install,v 1.8 2007/12/18 12:59:20 dries Exp $ 2 // $Id: block.install,v 1.8.2.1 2008/11/09 13:22:35 goba Exp $
3 3
4 /** 4 /**
5 * Implementation of hook_schema(). 5 * Implementation of hook_schema().
6 */ 6 */
7 function block_schema() { 7 function block_schema() {
84 'title' => array( 84 'title' => array(
85 'type' => 'varchar', 85 'type' => 'varchar',
86 'length' => 64, 86 'length' => 64,
87 'not null' => TRUE, 87 'not null' => TRUE,
88 'default' => '', 88 'default' => '',
89 'description' => t('Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)'), 89 'description' => t('Custom title for the block. (Empty string will use block default title, &lt;none&gt; will remove the title, text will cause block to use specified title.)'),
90 ), 90 ),
91 'cache' => array( 91 'cache' => array(
92 'type' => 'int', 92 'type' => 'int',
93 'not null' => TRUE, 93 'not null' => TRUE,
94 'default' => 1, 94 'default' => 1,