You are here

function _ctools_drush_object_is_db_only in Chaos Tool Suite (ctools) 7

Determine if an object is only in the db.

File

drush/ctools.drush.inc, line 810
CTools Drush commands.

Code

function _ctools_drush_object_is_db_only($object) {
  return $object->export_type == EXPORT_IN_DATABASE ? TRUE : FALSE;
}