From 8d103a08984ac2de72d756eb5c5c8d23061ab028 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 26 Oct 2002 15:17:26 +0000 Subject: - Committed Marco's block rewrite: + Blocks are not longer called if not rendered: major performance improvement. + Fixed some bugs (preview option was broken, path option was broken). + Removed "ascii"-type blocks. + Added permission to for "PHP blocks" + ... NOTES: + You'll want to run "update.php": ALTER TABLE blocks DROP remove; ALTER TABLE blocks DROP name; + You'll want to update your custom modules as well as the modules in the contrib repository. Block function should now read: function *_block($op = "list", $delta = 0) { if ($op == "list") { return array of block infos } else { return subject and content of $delta block } } --- modules/cloud.module | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'modules/cloud.module') diff --git a/modules/cloud.module b/modules/cloud.module index 2d42992f6..0847437c4 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -167,11 +167,16 @@ function cloud_page() { } } -function cloud_block() { - $block[0]["subject"] = t("Site cloud"); - $block[0]["content"] = cloud_list(20) ."
". lm(t("more"), array("mod" => "cloud"), "", array("title" => t("Monitor other sites in the cloud."))) ."
"; - $block[0]["info"] = t("Site cloud"); - return $block; +function cloud_block($op = "list", $delta = 0) { + if ($op == "list") { + $blocks[0]["info"] = t("Site cloud"); + return $blocks; + } + else { + $block["subject"] = t("Site cloud"); + $block["content"] = cloud_list(20) ."
". lm(t("more"), array("mod" => "cloud"), "", array("title" => t("Monitor other sites in the cloud."))) ."
"; + return $block; + } } function cloud_admin() { @@ -209,4 +214,4 @@ function cloud_admin() { } } -?> +?> \ No newline at end of file -- cgit v1.2.3