-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[gh-48] Merging from testing into staging
git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x/staging@890 20a16fea-79d4-4915-8869-1ea9d5ebf173
- Loading branch information
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
/** | ||
* @file | ||
* unl_wdn theme implementation to wrap menu blocks. | ||
* | ||
* Available variables: | ||
* - $content: The renderable array containing the menu. | ||
* - $classes: A string containing the CSS classes for the DIV tag. Includes: | ||
* menu-block-DELTA, menu-name-NAME, parent-mlid-MLID, and menu-level-LEVEL. | ||
* - $classes_array: An array containing each of the CSS classes. | ||
* | ||
* The following variables are provided for contextual information. | ||
* - $delta: (string) The menu_block's block delta. | ||
* - $config: An array of the block's configuration settings. Includes | ||
* menu_name, parent_mlid, title_link, admin_title, level, follow, depth, | ||
* expanded, and sort. | ||
* | ||
* @see template_preprocess_menu_block_wrapper() | ||
*/ | ||
?> | ||
<?php print render($content); ?> |