function styleguide_ul_links in Style Guide 7
Generate a links array for theme_links.
1 call to styleguide_ul_links()
- styleguide_styleguide in ./
styleguide.styleguide.inc - Implements hook_styleguide().
File
- ./
styleguide.module, line 687
Code
function styleguide_ul_links() {
$links = array();
for ($i = 0; $i <= 10; $i++) {
$word = styleguide_word();
$links[$word] = array(
'title' => $word,
'href' => current_path(),
'fragment' => 'ul_links',
);
}
return $links;
}