Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
5fbaa4b8
Commit
5fbaa4b8
authored
Jul 11, 2009
by
Dries Buytaert
Browse files
- Patch
#516254
by drewish remove @return PHPDocs where nothing is to return.
parent
e8b82e0b
Changes
5
Hide whitespace changes
Inline
Side-by-side
modules/locale/locale.api.php
View file @
5fbaa4b8
...
...
@@ -34,8 +34,6 @@ function hook_locale($op = 'groups') {
* Nested array of links keyed by language code.
* @param $path
* The current path.
* @return
* None.
*/
function
hook_translation_link_alter
(
array
&
$links
,
$path
)
{
global
$language
;
...
...
modules/menu/menu.api.php
View file @
5fbaa4b8
...
...
@@ -105,8 +105,6 @@ function hook_menu() {
*
* @param $items
* Associative array of menu router definitions returned from hook_menu().
* @return
* None.
*/
function
hook_menu_alter
(
&
$items
)
{
// Example - disable the page at node/add
...
...
@@ -118,8 +116,6 @@ function hook_menu_alter(&$items) {
*
* @param $item
* Associative array defining a menu link as passed into menu_link_save().
* @return
* None.
*/
function
hook_menu_link_alter
(
&
$item
)
{
// Example 1 - make all new admin links hidden (a.k.a disabled).
...
...
@@ -144,8 +140,6 @@ function hook_menu_link_alter(&$item) {
* Associative array defining a menu link after _menu_link_translate()
* @param $map
* Associative array containing the menu $map (path parts and/or objects).
* @return
* None.
*/
function
hook_translated_menu_link_alter
(
&
$item
,
$map
)
{
if
(
$item
[
'href'
]
==
'devel/cache/clear'
)
{
...
...
modules/node/node.api.php
View file @
5fbaa4b8
...
...
@@ -266,8 +266,6 @@ function hook_node_operations() {
*
* @param $node
* The node that is being deleted.
* @return
* None.
*/
function
hook_node_delete
(
$node
)
{
db_delete
(
'mytable'
)
...
...
@@ -282,8 +280,6 @@ function hook_node_delete($node) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_delete_revision
(
$node
)
{
db_delete
(
'upload'
)
->
condition
(
'vid'
,
$node
->
vid
)
->
execute
();
...
...
@@ -302,8 +298,6 @@ function hook_node_delete_revision($node) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_insert
(
$node
)
{
db_insert
(
'mytable'
)
...
...
@@ -352,8 +346,6 @@ function hook_node_load($nodes, $types) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_prepare
(
$node
)
{
if
(
!
isset
(
$node
->
comment
))
{
...
...
@@ -369,8 +361,6 @@ function hook_node_prepare($node) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_prepare_translation
(
$node
)
{
}
...
...
@@ -397,8 +387,6 @@ function hook_node_search_result($node) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_presave
(
$node
)
{
if
(
$node
->
nid
&&
$node
->
moderate
)
{
...
...
@@ -414,8 +402,6 @@ function hook_node_presave($node) {
*
* @param $node
* The node the action is being performed on.
* @return
* None.
*/
function
hook_node_update
(
$node
)
{
db_update
(
'mytable'
)
...
...
@@ -454,8 +440,6 @@ function hook_node_update_index($node) {
* The node the action is being performed on.
* @param $form
* The $form parameter from node_validate().
* @return
* None.
*/
function
hook_node_validate
(
$node
,
$form
)
{
if
(
isset
(
$node
->
end
)
&&
isset
(
$node
->
start
))
{
...
...
@@ -594,8 +578,6 @@ function hook_node_info() {
* - "update"
* @param $info
* The node type object on which $op is being performed.
* @return
* None.
*/
function
hook_node_type
(
$op
,
$info
)
{
...
...
@@ -670,8 +652,6 @@ function hook_access($op, $node, $account) {
*
* @param $node
* The node being deleted.
* @return
* None.
*
* To take action when nodes of any type are deleted (not just nodes of
* the type defined by this module), use hook_node() instead.
...
...
@@ -690,8 +670,6 @@ function hook_delete($node) {
*
* @param $node
* The node being saved.
* @return
* None.
*
* For a usage example, see image.module.
*/
...
...
@@ -779,8 +757,6 @@ function hook_form($node, $form_state) {
*
* @param $node
* The node being inserted.
* @return
* None.
*
* To take action when nodes of any type are inserted (not just nodes of
* the type(s) defined by this module), use hook_node() instead.
...
...
@@ -823,8 +799,6 @@ function hook_load($nodes) {
*
* @param $node
* The node being updated.
* @return
* None.
*
* To take action when nodes of any type are updated (not just nodes of
* the type(s) defined by this module), use hook_node() instead.
...
...
@@ -847,8 +821,6 @@ function hook_update($node) {
* The node to be validated.
* @param $form
* The node edit form array.
* @return
* None.
*
* To validate nodes of all types (not just nodes of the type(s) defined by
* this module), use hook_node() instead.
...
...
modules/simpletest/simpletest.api.php
View file @
5fbaa4b8
...
...
@@ -15,10 +15,6 @@
* A test group has started.
*
* This hook is called just once at the beginning of a test group.
*
* @return
* None.
*
*/
function
hook_test_group_started
()
{
}
...
...
@@ -27,10 +23,6 @@ function hook_test_group_started() {
* A test group has finished.
*
* This hook is called just once at the end of a test group.
*
* @return
* None.
*
*/
function
hook_test_group_finished
()
{
}
...
...
@@ -43,9 +35,6 @@ function hook_test_group_finished() {
* @param
* $results The results of the test as gathered by DrupalWebTestCase.
*
* @return
* None.
*
* @see DrupalWebTestCase->results
*/
function
hook_test_finished
(
$results
)
{
...
...
modules/system/system.api.php
View file @
5fbaa4b8
...
...
@@ -21,9 +21,6 @@
* Database maintenance, recalculation of settings or parameters, and
* automatic mailings are good candidates for cron tasks.
*
* @return
* None.
*
* This hook will only be called if cron.php is run (e.g. by crontab).
*/
function
hook_cron
()
{
...
...
@@ -137,8 +134,6 @@ function hook_elements() {
* Modules may use this to react appropriately; for example, nothing should
* be output in this case, because PHP will then throw a "headers cannot be
* modified" error when attempting the redirection.
* @return
* None.
*/
function
hook_exit
(
$destination
=
NULL
)
{
db_update
(
'counter'
)
...
...
@@ -387,8 +382,6 @@ function hook_form_alter(&$form, $form_state, $form_id) {
* Nested array of form elements that comprise the form.
* @param $form_state
* A keyed array containing the current state of the form.
* @return
* None.
*
* @see drupal_prepare_form().
*/
...
...
@@ -447,9 +440,6 @@ function hook_forms($form_id, $args) {
* Only use this hook if your code must run even for cached page views.This hook
* is called before modules or most include files are loaded into memory.
* It happens while Drupal is still in bootstrap mode.
*
* @return
* None.
*/
function
hook_boot
()
{
// we need user_access() in the shutdown function. make sure it gets loaded
...
...
@@ -467,9 +457,6 @@ function hook_boot() {
* For example, this hook is a typical place for modules to add CSS or JS
* that should be present on every page. This hook is not run on cached
* pages - though CSS or JS added this way will be present on a cached page.
*
* @return
* None.
*/
function
hook_init
()
{
drupal_add_css
(
drupal_get_path
(
'module'
,
'book'
)
.
'/book.css'
);
...
...
@@ -568,8 +555,6 @@ function hook_link($type, $object, $build_mode) {
* Nested array of links for the node keyed by providing module.
* @param $node
* A node object that contains the links.
* @return
* None.
*/
function
hook_link_alter
(
array
&
$links
,
$node
)
{
foreach
(
$links
as
$module
=>
$link
)
{
...
...
@@ -586,8 +571,6 @@ function hook_link_alter(array &$links, $node) {
* @param $account
* A user object whose profile is being rendered. Profile items
* are stored in $account->content.
* @return
* None.
*/
function
hook_profile_alter
(
&
$account
)
{
foreach
(
$account
->
content
AS
$key
=>
$field
)
{
...
...
@@ -621,7 +604,7 @@ function hook_profile_alter(&$account) {
* either a custom address or the site-wide default email address.
* - 'headers'
* Associative array containing mail headers, such as From, Sender,
* MIME-Version, Content-Type, etc.
* MIME-Version, Content-Type, etc.
*/
function
hook_mail_alter
(
&
$message
)
{
if
(
$message
[
'mail_id'
]
==
'my_message'
)
{
...
...
@@ -900,9 +883,6 @@ function hook_xmlrpc() {
* WATCHDOG_DEBUG Debug: debug-level messages
* - link: an optional link provided by the module that called the watchdog() function.
* - message: The text of the message to be logged.
*
* @return
* None.
*/
function
hook_watchdog
(
array
$log_entry
)
{
global
$base_url
,
$language
;
...
...
@@ -977,7 +957,7 @@ function hook_watchdog(array $log_entry) {
* array when the hook is invoked.
* - 'from':
* The address the message will be marked as being from, which is
* set by drupal_mail() to either a custom address or the site-wide
* set by drupal_mail() to either a custom address or the site-wide
* default email address when the hook is invoked.
* - 'headers':
* Associative array containing mail headers, such as From, Sender,
...
...
@@ -1033,8 +1013,6 @@ function hook_mail($key, &$message, $params) {
*
* @see drupal_flush_all_caches()
*
* @param None.
*
* @return
* An array of cache table names.
*/
...
...
@@ -1241,8 +1219,6 @@ function hook_file_validate(&$file) {
*
* @param $file
* The file that has just been created.
* @return
* None.
*
* @see file_save()
*/
...
...
@@ -1257,8 +1233,6 @@ function hook_file_insert(&$file) {
*
* @param $file
* The file that has just been updated.
* @return
* None.
*
* @see file_save()
*/
...
...
@@ -1273,8 +1247,6 @@ function hook_file_update(&$file) {
* The newly copied file object.
* @param $source
* The original file before the copy.
* @return
* None.
*
* @see file_copy()
*/
...
...
@@ -1289,8 +1261,6 @@ function hook_file_copy($file, $source) {
* The updated file object after the move.
* @param $source
* The original file object before the move.
* @return
* None.
*
* @see file_move()
*/
...
...
@@ -1328,8 +1298,6 @@ function hook_file_references($file) {
*
* @param $file
* The file that has just been deleted.
* @return
* None.
*
* @see file_delete()
* @see upload_file_delete()
...
...
@@ -1547,8 +1515,6 @@ function hook_schema() {
*
* @param $schema
* Nested array describing the schemas for all modules.
* @return
* None.
*/
function
hook_schema_alter
(
&
$schema
)
{
// Add field to existing schema.
...
...
@@ -1572,8 +1538,6 @@ function hook_schema_alter(&$schema) {
* @see SelectQueryInterface
* @param $query
* A Query object describing the composite parts of a SQL query.
* @return
* None.
*/
function
hook_query_alter
(
QueryAlterableInterface
$query
)
{
if
(
$query
->
hasTag
(
'micro_limit'
))
{
...
...
@@ -1591,8 +1555,6 @@ function hook_query_alter(QueryAlterableInterface $query) {
*
* @param $query
* An Query object describing the composite parts of a SQL query.
* @return
* None.
*/
function
hook_query_TAG_alter
(
QueryAlterableInterface
$query
)
{
// Skip the extra expensive alterations if site has no node access control modules.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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