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