/**
  * Save an object in the database.
  *
  * @param ObjectInterface $object
  */
 public static function save(Object $object)
 {
     ctools_include('export');
     $configuration = $object->getConfiguration();
     $export = $object->getExport();
     ctools_export_crud_save($configuration['table'], $export);
 }