Created
August 12, 2021 17:20
-
-
Save BedrosovaYulia/0aa8800b704f7849eb21c3b0c2036d94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
class TestRestProvider | |
{ | |
public static function OnRestServiceBuildDescription() | |
{ | |
return array( | |
'testrest' => array( | |
'testrest.get.constants' => array('callback' => array(__CLASS__, 'GetConstants'),'options' => array()), | |
) | |
); | |
} | |
public static function GetConstants($query, $n, \CRestServer $server) | |
{ | |
$result = array(); | |
//******* | |
return $result; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you,
where can I put this code and how is it related to the inbound web hook in Citrix?