This repository has been archived on 2020-06-13. You can view files and clone it, but cannot push or open issues/pull-requests.
|
<?php
|
|
|
|
$_services['commentCallback'] = array(
|
|
'args' => array('id' => 'string'),
|
|
'type' => 'boolean'
|
|
);
|
|
|
|
|
|
function _penguincoder_commentCallback($entry_id)
|
|
{
|
|
return true;
|
|
}
|
|
|