function _ctools_drush_object_is_not_code_only
Determine if an object is not a code only default.
1 string reference to '_ctools_drush_object_is_not_code_only'
- _ctools_drush_filter_exportables in drush/
ctools.drush.inc - Filters a collection of exportables based on filters.
File
-
drush/
ctools.drush.inc, line 831
Code
function _ctools_drush_object_is_not_code_only($object) {
return $object->export_type == EXPORT_IN_CODE ? FALSE : TRUE;
}