Difference between revisions of "Extension:ExpandableTables.php"
From Organic Design wiki
(bug fix) |
|||
Line 2: | Line 2: | ||
# Expandables | # Expandables | ||
# - CSS is the same as XmlWiki's expandables at the end of [[[[default-skin.css]]]] | # - CSS is the same as XmlWiki's expandables at the end of [[[[default-skin.css]]]] | ||
− | + | $wgHooks['ParserAfterTidy'][] = 'allowExpandables'; | |
function allowExpandables(&$parser,&$text) { | function allowExpandables(&$parser,&$text) { | ||
+ | if ($GLOBALS['allowex-done']++) return; | ||
# Replace all the expandable tables with html containing CSS classes and the show/hide links | # Replace all the expandable tables with html containing CSS classes and the show/hide links | ||
$text = preg_replace_callback( | $text = preg_replace_callback( | ||
Line 18: | Line 19: | ||
</script>\n$text" | </script>\n$text" | ||
); | ); | ||
+ | return true; | ||
} | } | ||
Line 28: | Line 30: | ||
<tr id=expandable-content-'.$i.$open.'><td><table class=expandable-content>'.$matches[3].'</td></tr></table>'; | <tr id=expandable-content-'.$i.$open.'><td><table class=expandable-content>'.$matches[3].'</td></tr></table>'; | ||
} | } | ||
− |
Revision as of 00:56, 18 January 2007
<?
- Expandables
- - CSS is the same as XmlWiki's expandables at the end of [[default-skin.css]]
$wgHooks['ParserAfterTidy'][] = 'allowExpandables'; function allowExpandables(&$parser,&$text) { if ($GLOBALS['allowex-done']++) return; # 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" ); return true; }- Callback function executed for rendering each expandable table
<a class=expandable-link href="javascript:toggleExpandable('.$i.')">► '.$matches[1].'</a> |
'.$matches[3].' } |