Skip to content

Instantly share code, notes, and snippets.

@damiann
Last active December 25, 2015 01:09
Show Gist options
  • Save damiann/6892732 to your computer and use it in GitHub Desktop.
Save damiann/6892732 to your computer and use it in GitHub Desktop.
MODx Print Event Request
<?php
/**
* checking the $resource object when event runs
*/
switch ($modx->event->name) {
case 'OnBeforeDocFormSave':
$modx->log(modX::LOG_LEVEL_INFO, print_r($resource));
break;
case 'OnDocFormSave':
$modx->log(modX::LOG_LEVEL_INFO, print_r($resource));
break;
default:
break;
}
return;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment