function _ctools_drush_object_is_db_only
Determine if an object is only in the db.
File
-
drush/
ctools.drush.inc, line 810
Code
function _ctools_drush_object_is_db_only($object) {
return $object->export_type == EXPORT_IN_DATABASE ? TRUE : FALSE;
}