Skip to content

Instantly share code, notes, and snippets.

@xtfer
Last active August 29, 2015 14:10
Show Gist options
  • Save xtfer/b7170ba0ebc9a55fa63f to your computer and use it in GitHub Desktop.
Save xtfer/b7170ba0ebc9a55fa63f to your computer and use it in GitHub Desktop.
Ghost: Formatter plugins ctools declaration
<?php
/**
* Implements hook_ctools_plugin_directory().
*/
function ghost_formatters_ctools_plugin_directory($owner, $plugin_type) {
if ($owner == 'ghost') {
if ($plugin_type == GHOST_PLUGIN_TYPE_FORMATTER) {
return 'src/Plugins';
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment