module_load_all_includes

Хочешь помочь с переводом? Это очень просто и быстро. Лишь зарегистрируйся, и можешь тут же начать переводить.

includes/module.inc, строка 272

Версии
6
module_load_all_includes($type, $name = NULL)

Load an include file for each of the modules that have been enabled in the system table.

▾ 1 функция вызывает module_load_all_includes()

drupal_get_schema in includes/common.inc
Возвращает схему определенной таблицы или всей базы данных сайта.

Код

<?php
function module_load_all_includes($type, $name = NULL) {
  $modules = module_list();
  foreach ($modules as $module) {
    module_load_include($type, $module, $name);
  }
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему