Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
294
Merge Requests
294
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
3ac59eee
Commit
3ac59eee
authored
May 13, 2009
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#320011
by lilou, snufkin, and karschp: Add consistent @file declarations to all .install files.
parent
cf6f4d9f
Changes
32
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
152 additions
and
2 deletions
+152
-2
modules/aggregator/aggregator.install
modules/aggregator/aggregator.install
+5
-0
modules/block/block.install
modules/block/block.install
+1
-1
modules/blogapi/blogapi.install
modules/blogapi/blogapi.install
+5
-0
modules/book/book.install
modules/book/book.install
+5
-0
modules/color/color.install
modules/color/color.install
+5
-0
modules/comment/comment.install
modules/comment/comment.install
+5
-0
modules/contact/contact.install
modules/contact/contact.install
+5
-0
modules/dblog/dblog.install
modules/dblog/dblog.install
+5
-0
modules/field/field.install
modules/field/field.install
+5
-0
modules/field/modules/field_sql_storage/field_sql_storage.install
...field/modules/field_sql_storage/field_sql_storage.install
+5
-0
modules/filter/filter.install
modules/filter/filter.install
+5
-0
modules/forum/forum.install
modules/forum/forum.install
+5
-0
modules/locale/locale.install
modules/locale/locale.install
+5
-0
modules/menu/menu.install
modules/menu/menu.install
+5
-0
modules/node/node.install
modules/node/node.install
+5
-0
modules/openid/openid.install
modules/openid/openid.install
+5
-0
modules/openid/tests/openid_test.install
modules/openid/tests/openid_test.install
+5
-0
modules/php/php.install
modules/php/php.install
+5
-0
modules/poll/poll.install
modules/poll/poll.install
+1
-1
modules/profile/profile.install
modules/profile/profile.install
+5
-0
modules/search/search.install
modules/search/search.install
+5
-0
modules/simpletest/simpletest.install
modules/simpletest/simpletest.install
+5
-0
modules/simpletest/tests/database_test.install
modules/simpletest/tests/database_test.install
+5
-0
modules/simpletest/tests/field_test.install
modules/simpletest/tests/field_test.install
+5
-0
modules/simpletest/tests/taxonomy_test.install
modules/simpletest/tests/taxonomy_test.install
+5
-0
modules/statistics/statistics.install
modules/statistics/statistics.install
+5
-0
modules/system/system.install
modules/system/system.install
+5
-0
modules/taxonomy/taxonomy.install
modules/taxonomy/taxonomy.install
+5
-0
modules/trigger/trigger.install
modules/trigger/trigger.install
+5
-0
modules/update/update.install
modules/update/update.install
+5
-0
modules/upload/upload.install
modules/upload/upload.install
+5
-0
modules/user/user.install
modules/user/user.install
+5
-0
No files found.
modules/aggregator/aggregator.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the aggregator module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/block/block.install
View file @
3ac59eee
...
...
@@ -3,7 +3,7 @@
/**
* @file
* Install
instructions for the block module
* Install
, update and uninstall functions for the block module.
*/
/**
...
...
modules/blogapi/blogapi.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the blogapi module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/book/book.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the book module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/color/color.install
View file @
3ac59eee
<?php
/* $Id$ */
/**
* @file
* Install, update and uninstall functions for the color module.
*/
function
color_requirements
(
$phase
)
{
$requirements
=
array
();
...
...
modules/comment/comment.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the comment module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/contact/contact.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the contact module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/dblog/dblog.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the dblog module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/field/field.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the field module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/field/modules/field_sql_storage/field_sql_storage.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the field_sql_storage module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/filter/filter.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the filter module.
*/
/**
* Implementation of hook_schema().
*/
...
...
modules/forum/forum.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the forum module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/locale/locale.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the locale module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/menu/menu.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the menu module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/node/node.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the node module.
*/
/**
* Implementation of hook_schema().
*/
...
...
modules/openid/openid.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the openid module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/openid/tests/openid_test.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the openid_test module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/php/php.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the php module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/poll/poll.install
View file @
3ac59eee
...
...
@@ -3,7 +3,7 @@
/**
* @file
* Install
file for
poll module.
* Install
, update and uninstall functions for the
poll module.
*/
/**
...
...
modules/profile/profile.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the profile module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/search/search.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the search module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/simpletest/simpletest.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the simpletest module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/simpletest/tests/database_test.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the database_test module.
*/
/**
* Implementation of hook_schema().
*
...
...
modules/simpletest/tests/field_test.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the field_test module.
*/
/**
* Implementation of hook_schema().
*/
...
...
modules/simpletest/tests/taxonomy_test.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the taxonomy_test module.
*/
/**
* Implementation of hook_schema().
*/
...
...
modules/statistics/statistics.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the statistics module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/system/system.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the system module.
*/
/**
* Test and report Drupal installation requirements.
*
...
...
modules/taxonomy/taxonomy.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the taxonomy module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/trigger/trigger.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the trigger module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/update/update.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the update module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/upload/upload.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the upload module.
*/
/**
* Implementation of hook_install().
*/
...
...
modules/user/user.install
View file @
3ac59eee
<?php
// $Id$
/**
* @file
* Install, update and uninstall functions for the user module.
*/
/**
* Implementation of hook_schema().
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment