# name_run_action_admin_template()
name_run_action_admin_template()
This function handles the add-on's $_GET actions for the ADMIN area pages. Each get action should have the function to be called defined. The Function must be named using this method: addon_name_description.
An example of a valid function:
<?php
function name_run_action_admin_template() {
switch ($_GET['action']) {
case 'addon_name_admin':
$data = name_display_admin_page();
break;
default:
$data = '';
break;
}
return $data;
}
?>