$this->
addAclPermission('delete', 'delete', 'Insufficient Permissions'
);
$this->
addAclPermission('deleteDocument', 'deleteDocument', 'Insufficient Permissions'
);
} /**
* Get a list of available payment status
*
* @return void
*/
public function getPaymentStatusAction() { $orderStatus =
$this->
getRepository()->
getPaymentStatusQuery()->
getArrayResult();
$this->
View()->
assign([ 'success' => true,
'data' =>
$orderStatus,
]);
} /**
* Enable json renderer for index / load action
* Check acl rules
*
* @return void
*/