You are here

function _ctools_drush_object_is_not_db_only in Chaos Tool Suite (ctools) 7

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
CTools Drush commands.

Code

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