You are here

function _ctools_drush_object_is_code_only in Chaos Tool Suite (ctools) 7

Determine if an object is a code only default.

File

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

Code

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