You are here

single_page_site.api.php in Single Page Site 7

API documentation for Single Page Site.

File

single_page_site.api.php
View source
<?php

/**
 * @file
 * API documentation for Single Page Site.
 */

/**
 * Example of how to use hook_single_page_site_output().
 */
function hook_single_page_site_output(&$output, $current_item_count) {

  // Alter the output of the current page.
  $output .= 'Attach string';
}

Functions

Namesort descending Description
hook_single_page_site_output Example of how to use hook_single_page_site_output().