Mercurial > defr > drupal > core
comparison modules/update/update.install @ 19:3edae6ecd6c6 6.9
Drupal 6.9
author | Franck Deroche <franck@defr.org> |
---|---|
date | Thu, 15 Jan 2009 10:15:56 +0100 |
parents | 589fb7c02327 |
children |
comparison
equal
deleted
inserted
replaced
18:f5131a9cd9e5 | 19:3edae6ecd6c6 |
---|---|
1 <?php | 1 <?php |
2 // $Id: update.install,v 1.4.2.1 2008/08/28 08:14:56 dries Exp $ | 2 // $Id: update.install,v 1.4.2.2 2009/01/06 15:46:38 goba Exp $ |
3 | 3 |
4 /** | 4 /** |
5 * Implementation of hook_install(). | 5 * Implementation of hook_install(). |
6 */ | 6 */ |
7 function update_install() { | 7 function update_install() { |
34 /** | 34 /** |
35 * Implementation of hook_schema(). | 35 * Implementation of hook_schema(). |
36 */ | 36 */ |
37 function update_schema() { | 37 function update_schema() { |
38 $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache'); | 38 $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache'); |
39 $schema['cache_update']['description'] = t('Cache table for the Update module to store information about available releases, fetched from central server.'); | 39 $schema['cache_update']['description'] = 'Cache table for the Update module to store information about available releases, fetched from central server.'; |
40 return $schema; | 40 return $schema; |
41 } | 41 } |
42 | 42 |
43 /** | 43 /** |
44 * Private helper to clear out stale variables from update_status 5.x contrib. | 44 * Private helper to clear out stale variables from update_status 5.x contrib. |