Skip to content

Instantly share code, notes, and snippets.

@hertsch
Last active August 29, 2015 13:55
Show Gist options
  • Save hertsch/8726490 to your computer and use it in GitHub Desktop.
Save hertsch/8726490 to your computer and use it in GitHub Desktop.
Sample: check if the imageTweak filter is available
<?php
// check if the imageTweak filter is available
if (file_exists(WB_PATH.'/modules/kit_framework/framework_info.php')) {
require_once WB_PATH.'/modules/kit_framework/framework_info.php';
if (kitFramework_isFilterAvailable('imageTweak')) {
echo '~~ filter:imageTweak ~~';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment