Skip to content

Instantly share code, notes, and snippets.

@bueckl
Created May 25, 2015 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bueckl/8aff7360a3077fffc54b to your computer and use it in GitHub Desktop.
Save bueckl/8aff7360a3077fffc54b to your computer and use it in GitHub Desktop.
Silverstripe SS3 isEmptyObject
function isEmptyObject($o) {
if ( $o->toMap()['ID'] > 0) {
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment