function _simpleads_show_ads in SimpleAds 7
Menu callback. Callback for AJAX call.
Parameters
int $tid: Term ID (Ad group ID)
int $limit: Number of Ads to retreive.
Return value
string rendered HTML template.
1 string reference to '_simpleads_show_ads'
- simpleads_menu in ./
simpleads.module - Implements hook_menu().
File
- ./
simpleads.module, line 394
Code
function _simpleads_show_ads($tid, $limit) {
drupal_page_is_cacheable(FALSE);
if (is_numeric($tid)) {
$nodes = _simpleads_load_ads($tid, $limit);
print _simpleads_render_ajax_template($nodes, $tid, $limit);
}
exit;
}