diff --git a/modules/block/block.api.php b/modules/block/block.api.php index d8e129e..ebc038b 100644 --- a/modules/block/block.api.php +++ b/modules/block/block.api.php @@ -87,13 +87,14 @@ * and any value provided can be modified by a user on the block * configuration screen. * - pages: (optional) See 'visibility' above. A string that contains one or - * more page paths separated by '\n', '\r', or '\r\n' when 'visibility' is + * more page paths separated by "\n", "\r", or "\r\n" when 'visibility' is * set to BLOCK_VISIBILITY_NOTLISTED or BLOCK_VISIBILITY_LISTED, or custom * PHP code when 'visibility' is set to BLOCK_VISIBILITY_PHP. Paths may use * '*' as a wildcard (matching any number of characters); '' * designates the site's front page. For BLOCK_VISIBILITY_PHP, the PHP * code's return value should be TRUE if the block is to be made visible or * FALSE if the block should not be visible. + * Example: "\nnode/1" * * For a detailed usage example, see block_example.module. *