जवाबों:
जब तक आपको एक घातक त्रुटि (या रिक्त स्क्रीन) नहीं मिलती है, तब तक उन मॉड्यूलों की एक सूची प्राप्त करना बहुत आसान है जो एक विशेष क्लिप के आने पर आह्वान किया जाएगा:
$modules = module_implements($hook);
foreach ($modules as $key => $module) {
$function = $module . '_' . $hook;
if (!function_exists($function)) {
unset($modules[$key]);
}
}
// $modules is now an array containing all the modules that will be invoked by $hook.
आप Drupal के प्रवाह को ट्रैक करने के लिए xDebug जैसे सामान का उपयोग कर सकते हैं, लेकिन यह भारी हो सकता है, खासकर यदि आप Drupal में नए हैं।