Skip to content

Instantly share code, notes, and snippets.

@mglaman
Created June 5, 2014 14:37
Show Gist options
  • Save mglaman/bc3143b63ee70a4f6f2c to your computer and use it in GitHub Desktop.
Save mglaman/bc3143b63ee70a4f6f2c to your computer and use it in GitHub Desktop.
Change a pane style plugin's title
/**
* Implements hook_ctools_plugin_pre_alter().
*/
function module_ctools_plugin_pre_alter(&$plugin, &$info) {
// Rename "Kalacustomize" pane style text label to "Custom Pane Style"
if ($plugin['name'] == 'kalacustomize') {
$plugin['title'] = t('Custom Pane Style');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment