summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-10-18 03:55:44 +0100
committerAndrew Dolgov <[email protected]>2007-10-18 03:55:44 +0100
commita04c8e8dc2efd08e6f4d828d93099bacf02d421d (patch)
treeb0ca415a34a1d2c513396244f3095ce9b3a27591 /functions.php
parentbef4c2451ee731b572e95646f40e75a514baae9a (diff)
add collapsed CDM mode
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index f87491d61..32240b1ac 100644
--- a/functions.php
+++ b/functions.php
@@ -4622,7 +4622,25 @@
"target=\"_new\" href=", $line["content_preview"]);
}
- print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
+ $expand_cdm = get_pref($link, 'CDM_EXPANDED');
+
+ if ($expand_cdm) {
+ $cdm_cstyle = "";
+ } else {
+ $cdm_cstyle = "style=\"display : none\"";
+ }
+
+ print "<div class=\"cdmContent\">";
+
+ print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
+ print $line["content_preview"];
+ print "</div>";
+
+ print "<a id=\"CICH-$id\"
+ href=\"javascript:cdmExpandArticle($id)\">
+ Show article</a>";
+
+ print "</div><br clear=\"all\">";
print "<div class=\"cdmFooter\"><span class='s0'>";