Skip to content

Instantly share code, notes, and snippets.

@gwin
Created March 17, 2015 09:12
Show Gist options
  • Save gwin/bdbe131894dc6266b199 to your computer and use it in GitHub Desktop.
Save gwin/bdbe131894dc6266b199 to your computer and use it in GitHub Desktop.
Form Callback Function
<?php
/**
* Example callback function for filling <select> fields
*
* @retuen array
**/
function my_callback_function() {
return array(
array("key"=> "1", "value"=>"One", "description"=>"One"),
array("key"=> "2", "value"=>"Two", "description"=>"Two"),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment