Skip to content

Instantly share code, notes, and snippets.

@dehenne
Created February 24, 2017 06:01
Show Gist options
  • Save dehenne/39b6ffe6654a34e53e3e31649ed5f297 to your computer and use it in GitHub Desktop.
Save dehenne/39b6ffe6654a34e53e3e31649ed5f297 to your computer and use it in GitHub Desktop.
<?php
/**
* Hello World Ajax Function
*/
QUI::getAjax()->registerFunction(
'package_quiqqer_test_ajax_helloworld',
function ($param1, $param2) {
return $param1 . ' ' . $param2;
},
array('param1', 'param2')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment