Home »
Imported messages »
comp.lang.php »
about a piece of code from drupal 3.0.x
about a piece of code from drupal 3.0.x [message #175954] |
Thu, 10 November 2011 10:29 |
zhang yun
Messages: 3 Registered: July 2011
Karma: 0
|
Junior Member |
|
|
hi all
i don't understand this function .if someone help me explain it ,i
would appreciate
the code:
// invoke hook $hook of module $name with optional arguments:
function module_invoke($name, $hook, $a1 = NULL, $a2 = NULL) {
$function = $name ."_". $hook;
if (function_exists($function)) {
return $function($a1, $a2);
}
}
what is it would return ? why write $function( $a1 , $a2);?
|
|
|
Goto Forum:
Current Time: Thu Nov 21 21:53:26 GMT 2024
Total time taken to generate the page: 0.02354 seconds