DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
Fix for Code
View
Fix
April 26, 2009 - 9:48pm — Anonymous
/**
* Implementation of hook_theme_registry_alter().
*
* Make simpleblocks' block preprocess function run *after* everything else's,
* so that we can alter zen's links. This method was nicked from jquery_update.
*/
function
simpleblocks_theme_registry_alter
(
&
$theme_registry
)
{
if
(
isset
(
$theme_registry
[
'block'
]
)
)
{
// If simpleblocks' preprocess function is there already, remove it.
if
(
$key
=
array_search
(
'simpleblocks_preprocess_block'
,
$theme_registry
[
'block'
]
[
'preprocess functions'
]
)
)
{
unset
(
$theme_registry
[
'block'
]
[
'preprocess functions'
]
[
$key
]
)
;
}
// Now tack it on at the end so it runs after everything else.
$theme_registry
[
'block'
]
[
'preprocess functions'
]
[
]
=
'simpleblocks_preprocess_block'
;
}
}
/**
* Override or insert variables into the block templates.
*
* @param $vars
* An array of variables to pass to the theme template.
* @param $hook
* The name of the template being rendered ("block" in this case.)
*/
function
simpleblocks_preprocess_block
(
$vars
,
$hook
)
{
$block
=
$vars
[
'block'
]
;
if
(
simpleblocks_user_access
(
$block
-
>
module
,
$block
-
>
delta
)
)
{
if
(
theme_get_setting
(
'zen_block_editing'
)
&&
user_access
(
'administer blocks'
)
)
{
// we'll do something here.
}
}
}
blocks
zen
Submit Fix
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
/** * Implementation of hook_theme_registry_alter(). * * Make simpleblocks' block preprocess function run *after* everything else's, * so that we can alter zen's links. This method was nicked from jquery_update. */ function simpleblocks_theme_registry_alter(&$theme_registry) { if (isset($theme_registry['block'])) { // If simpleblocks' preprocess function is there already, remove it. if ($key = array_search('simpleblocks_preprocess_block', $theme_registry['block']['preprocess functions'])) { unset($theme_registry['block']['preprocess functions'][$key]); } // Now tack it on at the end so it runs after everything else. $theme_registry['block']['preprocess functions'][] = 'simpleblocks_preprocess_block'; } } /** * Override or insert variables into the block templates. * * @param $vars * An array of variables to pass to the theme template. * @param $hook * The name of the template being rendered ("block" in this case.) */ function simpleblocks_preprocess_block($vars, $hook) { $block = $vars['block']; if (simpleblocks_user_access($block->module, $block->delta)) { if (theme_get_setting('zen_block_editing') && user_access('administer blocks')) { // we'll do something here. } } }
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.