function theme_outline_designer_options in Outline Designer 5
Implementation of theme hook
1 theme call to theme_outline_designer_options()
- _outline_designer_outline in ./
outline_designer.module - Helper function for the rendering of the outline designer page
File
- ./
outline_designer.module, line 307
Code
function theme_outline_designer_options() {
return '<input type="button" onclick="new_structure();" value="New">
<input type="button" onclick="duplicate_structure();" value="Duplicate">
<input type="button" onclick="delete_structure();" value="Delete">';
}