Extension:ExpandableTables.php

From Organic Design wiki
Revision as of 08:40, 15 January 2007 by Nad (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<?

  1. Expandables
  2. - CSS is the same as XmlWiki's expandables at the end of [[default-skin.css]]
  3. - bug: currently needs allowExpandables($parser,$text); in renderSecurityInfo()

function allowExpandables(&$parser,&$text) { # Replace all the expandable tables with html containing CSS classes and the show/hide links $text = preg_replace_callback(

'/

(.+?<\\/table\\s*?>)/s', 'expandableCallback', "\n<script type='text/javascript'> function toggleExpandable(id) { var heading = document.getElementById('expandable-heading-'+id); var content = document.getElementById('expandable-content-'+id); if (content.style.display == 'none') content.style.display = ; else content.style.display = 'none'; this.parent.focus(); } </script>\n$text" ); }
  1. Callback function executed for rendering each expandable table
function expandableCallback($matches) { $i = ++$GLOBALS["expandable/tbl-count"]; $open = $matches[2] ?  : ' style="display:none;"'; # default to expanded in id present after title attribute return '
<a class=expandable-link href="javascript:toggleExpandable('.$i.')">► '.$matches[1].'</a>
'.$matches[3].'
';

} ?>