You are here

function log_save in Log entity 7

Save log.

Parameters

Log $log: The log entity.

5 calls to log_save()
LogProcessor::entitySave in includes/feeds/plugins/LogProcessor.inc
Save a log.
log_done_action in ./log.module
Action function for log_done_action.
log_form_submit in ./log.pages.inc
Log submit handler.
log_undone_action in ./log.module
Action function for log_undone_action.
_log_action_date_form_action in ./log.module
Log action form with date field (action helper function).

File

./log.module, line 1009
Log - A general purpose record keeping system.

Code

function log_save(Log $log) {
  entity_save('log', $log);
}