function drupal_get_path
Same name and namespace in other branches
- 7.x drupal-7.x/includes/common.inc \drupal_get_path()
Returns the path to a system item (module, theme, etc.).
Parameters
$type: The type of the item (i.e. theme, theme_engine, module, profile).
$name: The name of the item for which the path is requested.
Return value
The path to the requested item.
42 calls to drupal_get_path()
- aggregator_init in drupal-6.x/
modules/ aggregator/ aggregator.module - Implementation of hook_init().
- block-admin-display-form.tpl.php in drupal-6.x/
modules/ block/ block-admin-display-form.tpl.php - block-admin-display-form.tpl.php Default theme implementation to configure blocks.
- block_admin_display_form in drupal-6.x/
modules/ block/ block.admin.inc - Generate main blocks administration form.
- book_init in drupal-6.x/
modules/ book/ book.module - Implementation of hook_init(). Add's the book module's CSS.
- color_get_info in drupal-6.x/
modules/ color/ color.module - Retrieve the color.module info for a particular theme.
Archivo
- drupal-6.x/
includes/ common.inc, line 1764 - Common functions that many Drupal modules will need to reference.
Código
function drupal_get_path($type, $name) {
return dirname(drupal_get_filename($type, $name));
}