function theme_outline_designer_bottom in Outline Designer 5
Implementation of theme hook
1 theme call to theme_outline_designer_bottom()
- _outline_designer_outline in ./
outline_designer.module - Helper function for the rendering of the outline designer page
File
- ./
outline_designer.module, line 287
Code
function theme_outline_designer_bottom() {
return '</div>
<div style="padding:5px;">
<a href="#" onclick="treeObj.collapseAll();">Collapse all</a>
<a href="#" onclick="treeObj.expandAll();">Expand all</a>
Scale Interface:
<a href="#" onclick="scale_outline_designer(' . "'down'" . ');">Smaller</a>
<a href="#" onclick="scale_outline_designer(' . "'up'" . ');">Bigger</a>
<a href="#" onclick="scale_outline_designer(' . "'reset'" . ');">Reset</a>
</div>
<div>
<ul id="node0" class="dhtmlgoodies_tree">
<ul style="display:inline"></ul>
</ul>
</div>
</div>';
}