You are here

function theme_outline_designer_suffix in Outline Designer 7.2

Same name and namespace in other branches
  1. 6.2 outline_designer.module \theme_outline_designer_suffix()

Theme Callback: Outline Designer page suffix

1 theme call to theme_outline_designer_suffix()
theme_outline_designer_book_admin_table in modules/outline_designer_book/outline_designer_book.module
Theme override for book_admin_table

File

./outline_designer.module, line 305
API for implementation of the Outline Designer usability improvements.

Code

function theme_outline_designer_suffix($variables) {
  $nid = $variables['nid'];
  $icon_path = $variables['icon_path'];
  return '<img src="' . $icon_path . 'open.png"  alt="open" class="od-toggle-open" id="collapse-' . $nid . '" />';
}