summaryrefslogtreecommitdiff
path: root/modules/block
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-12 10:01:15 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-12 10:01:15 +0000
commit47ae354ef5b266a0df8a557c078ee866f4c352ee (patch)
tree5a02e1c8e2d76b0ee5dd31d1248049a04a07c080 /modules/block
parent3607a2b059f8ecd516b738edcd66179b80d3a786 (diff)
downloadbrdo-47ae354ef5b266a0df8a557c078ee866f4c352ee.tar.gz
brdo-47ae354ef5b266a0df8a557c078ee866f4c352ee.tar.bz2
- Patch #44163 by m3avrck: fixed typo in permission and fixed incorrect description.
Diffstat (limited to 'modules/block')
-rw-r--r--modules/block/block.module8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index 9f5ed6672..95266c9b8 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -357,16 +357,20 @@ function block_admin_configure($module = NULL, $delta = 0) {
'#collapsible' => true,
'#weight' => 0,
);
- $access = user_access('Use PHP for block visibility');
+ $access = user_access('use PHP for block visibility');
if ($edit['visibility'] == 2 && !$access) {
+ $form['page_vis_settings'] = array();
$form['page_vis_settings']['visibility'] = array('#type' => 'value', '#value' => 2);
$form['page_vis_settings']['pages'] = array('#type' => 'value', '#value' => $edit['pages']);
}
else {
$options = array(t('Show on every page except the listed pages.'), t('Show on only the listed pages.'));
+ $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are '%blog' for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => theme('placeholder', 'blog'), '%blog-wildcard' => theme('placeholder', 'blog/*'), '%front' => theme('placeholder', '<front>')));
+
if ($access) {
$options[] = t('Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only).');
+ $description .= t('If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site.', array('%php' => theme('placeholder', '<?php ?>')));
}
$form['page_vis_settings']['visibility'] = array(
'#type' => 'radios',
@@ -378,7 +382,7 @@ function block_admin_configure($module = NULL, $delta = 0) {
'#type' => 'textarea',
'#title' => t('Pages'),
'#default_value' => $edit['pages'],
- '#description' => t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are '%blog' for the blog page and %blog-wildcard for every personal blog. %front is the front page. If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site.", array('%blog' => theme('placeholder', 'blog'), '%blog-wildcard' => theme('placeholder', 'blog/*'), '%front' => theme('placeholder', '<front>'), '%php' => theme('placeholder', '<?php ?>'))),
+ '#description' => $description,
);
}