Created
June 5, 2014 14:37
-
-
Save mglaman/bc3143b63ee70a4f6f2c to your computer and use it in GitHub Desktop.
Change a pane style plugin's title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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