You are here

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>&nbsp;&nbsp;
      <a href="#" onclick="treeObj.expandAll();">Expand all</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
	  Scale Interface:
	  <a href="#" onclick="scale_outline_designer(' . "'down'" . ');">Smaller</a>&nbsp;&nbsp;
	  <a href="#" onclick="scale_outline_designer(' . "'up'" . ');">Bigger</a>&nbsp;&nbsp;
	  <a href="#" onclick="scale_outline_designer(' . "'reset'" . ');">Reset</a>&nbsp;&nbsp;
    </div>
  <div>
	  <ul id="node0" class="dhtmlgoodies_tree">
	  <ul style="display:inline"></ul>
	  </ul>
  </div>
  </div>';
}