You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
439 B
21 lines
439 B
<?php |
|
|
|
/** |
|
* @file |
|
* Hooks for the Styleguide module. |
|
*/ |
|
|
|
/** |
|
* Alter styleguide elements. |
|
* |
|
* @param array &$items |
|
* An array of items to be displayed. |
|
* |
|
* @see hook_styleguide() |
|
*/ |
|
function hook_styleguide_alter(array &$items) { |
|
// Add a class to the text test. |
|
$items['text']['content'] = '<div class="mytestclass">' . $items['text']['content'] . '</div>'; |
|
// Remove the headings tests. |
|
unset($items['headings']); |
|
}
|
|
|