summaryrefslogtreecommitdiff
path: root/modules/block.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-30 18:34:02 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-30 18:34:02 +0000
commit74d9266b3f2e0480c8efe7b938d2d213ecca3f19 (patch)
treec24d63906df1bcbbb4d373023ce3f4360b5710c9 /modules/block.module
parentda80e6204252b78c3cbe380df54c056df438a1d0 (diff)
downloadbrdo-74d9266b3f2e0480c8efe7b938d2d213ecca3f19.tar.gz
brdo-74d9266b3f2e0480c8efe7b938d2d213ecca3f19.tar.bz2
- Bugfix: fixed calendar block caching. Patch by Al. Fixes bug #2131.
- Improvement: improved the block module documentation. Patch #59 by Gerhard.
Diffstat (limited to 'modules/block.module')
-rw-r--r--modules/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block.module b/modules/block.module
index f84067931..5ac9d9f59 100644
--- a/modules/block.module
+++ b/modules/block.module
@@ -8,7 +8,7 @@ function block_help() {
$output .= "<p>The path setting lets you define on which pages you want a specific block to be shown. If you leave the path blank it will show on all pages. The path uses a regular expression syntax so remember to escape special characters!</p>";
$output .= "<p>In case you should not know what a regular expression is, you should read about them in the PHP manual. The chapter to look at is the one on <a href=\"http://php.net/pcre\">Perl-Compatible Regular Expressions (PCRE)</a>.</p>";
$output .= "<p>However, for basic tasks it is sufficient to look at the following examples:</p>";
- $output .= "<p>If the block should only show up on blog pages, use &lt;^/blog&gt;. To display on all node views use &lt;^/node/view&gt;. The angular brackets are used as delimiters of the regular expression. The caret indicates the start of the path. To show up on either forum or book pages use &lt;^(/forum|/book)&gt;. The round brackets form a group of expressions, divided by the | character. It matches if any of the expressions in it match. A more complicated example is &lt;^/node/add/(story|blog|image)&gt;. Blocks which have their paths set to this expression will show up on story, block, or image composition pages.</p>";
+ $output .= "<p>If the block should only show up on blog pages, use &lt;/blog&gt;. To display on all node views use &lt;/node/view&gt;. The angular brackets are used as delimiters of the regular expression. To show up on either forum or book pages use &lt;(/forum|/book)&gt;. The round brackets form a group of expressions, divided by the | character. It matches if any of the expressions in it match. A more complicated example is &lt;/node/add/(story|blog|image)&gt;. Blocks which have their paths set to this expression will show up on story, block, or image composition pages.</p>";
$output .= "<h3>Custom Blocks</h3>";
$output .= "<p>A custom block is a block that contains admin-supplied HTML, text or PHP content (as opposed to being generated automatically by a module). Each custom block consists of a title, a description, and a body of text, HTML, or PHP code which can be as long as you wish. The Drupal engine will 'render' the content of the custom block.</p>";
$output .= "<h4>PHP in custom blocks</h4>";