You are here

function theme_nodeorder_order_icon in Node Order 5

1 theme call to theme_nodeorder_order_icon()
nodeorder_term_page in ./nodeorder.module
Menu callback; displays all nodes associated with a term.

File

./nodeorder.module, line 639

Code

function theme_nodeorder_order_icon($path, $name) {
  return '<div id="nodeorder-icon">' . l(t('Set the order of nodes in !term', array(
    '!term' => $name,
  )), $path) . "</div>\n";
}