You are here

function theme_ad_box in Advertisement 7

8 theme calls to theme_ad_box()
ad_activity_details in ./ad.pages.inc
ad_external_node_view in external/ad_external.module
Adapi helper function for displaying ad itself.
theme_ad_statistics_display in ./ad.pages.inc
theme_ad_status_display in ./ad.module
Display the status of the currently viewed ad.
theme_node_ad in ./ad.pages.inc
@file Advertisement nodes pages and forms.

... See full list

File

./ad.module, line 206

Code

function theme_ad_box($variables) {
  $output = '<h2 class="title">' . $variables['title'] . '</h2><div>' . $variables['content'] . '</div>';
  return $output;
}