tvheadend/vendor/ext-3.4.1/examples/direct/php/config.php
Adam Sutton bafcfff42d webui: restructure webui/extjs source files
I want to keep the 3rd-party packages away from the main source
where possible.
2013-06-03 17:11:01 +01:00

34 lines
No EOL
710 B
PHP

<?php
$API = array(
'TestAction'=>array(
'methods'=>array(
'doEcho'=>array(
'len'=>1
),
'multiply'=>array(
'len'=>1
),
'getTree'=>array(
'len'=>1
)
)
),
'Profile'=>array(
'methods'=>array(
'getBasicInfo'=>array(
'len'=>2
),
'getPhoneInfo'=>array(
'len'=>1
),
'getLocationInfo'=>array(
'len'=>1
),
'updateBasicInfo'=>array(
'len'=>2,
'formHandler'=>true
)
)
)
);