Difference between revisions of "Expandable.php"

From Organic Design wiki
m
m
Line 26: Line 26:
 
function expandableCallback($matches) {
 
function expandableCallback($matches) {
 
$i = ++$GLOBALS["$title/tbl-count"];
 
$i = ++$GLOBALS["$title/tbl-count"];
 +
if ($open = $matches[2]) xwMessage('open ;-)');
 
return '<table class=expandable-heading id=expandable-heading-'.$i.'>
 
return '<table class=expandable-heading id=expandable-heading-'.$i.'>
 
<tr>
 
<tr>
Line 32: Line 33:
 
</tr>
 
</tr>
 
<tr id=expandable-content-'.$i.' style="display:none;"><td colspan=2>
 
<tr id=expandable-content-'.$i.' style="display:none;"><td colspan=2>
<table class=expandable-content>'.$matches[2].'
+
<table class=expandable-content>'.$matches[3].'
 
</td></tr></table>';
 
</td></tr></table>';
 
}
 
}
Line 38: Line 39:
 
# 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
 
$article = preg_replace_callback(
 
$article = preg_replace_callback(
'/<table class=["\']?expandable["\']? title=["\']?(.+?)["\']?\\s*>(.+?<\\/table\\s*?>)/s',
+
'/<table class=["\']?expandable["\']? title=["\']?(.+?)["\']?\\s*(open)?\\s*>(.+?<\\/table\\s*?>)/s',
 
'expandableCallback',
 
'expandableCallback',
 
$article
 
$article

Revision as of 08:00, 11 October 2006

<? if ($GLOBALS['action'] == 'view') {

# Insert a JS function into the page to be called when show/hide links are clicked $article = preg_replace( '/(<\\/head\\s*>)/', '<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"; } }

</script>$1',

$article );

# Callback function executed for rendering each expandable table function expandableCallback($matches) { $i = ++$GLOBALS["$title/tbl-count"]; if ($open = $matches[2]) xwMessage('open ;-)');

return '

<a class=expandable-link href="javascript:toggleExpandable('.$i.')">► '.$matches[1].'</a> <a href="'.$GLOBALS['xwScript'].'?title='.$matches[1].'&action=edit">Edit</a>