add plugin hooks to channel sync/import/export

This commit is contained in:
redmatrix
2015-09-23 18:27:04 -07:00
parent f506f73d3f
commit e45958b967
3 changed files with 8 additions and 0 deletions

View File

@@ -616,6 +616,10 @@ function identity_basic_export($channel_id, $items = false) {
}
}
$addon = array('channel_id' => $channel_id,'data' => $ret);
call_hooks('identity_basic_export',$addon);
$ret = $addon['data'];
if(! $items)
return $ret;