You are here

function avatar_selection_theme in Avatar Selection 7

Same name and namespace in other branches
  1. 6 avatar_selection.module \avatar_selection_theme()

Implements hook_theme().

File

./avatar_selection.module, line 666
The Avatar Selection module allows the user to pick an avatar image from a list already loaded by an administrative user, and to the administrator to disable uploading other avatar files by the user.

Code

function avatar_selection_theme() {
  return array(
    'avatar_selection_pager' => array(
      'variables' => array(
        'total' => 10,
        'limit' => 10,
        'js_file' => NULL,
      ),
    ),
    'avatar_selection_pager_link' => array(
      'variables' => array(
        'text' => NULL,
        'url' => NULL,
        'page' => 0,
      ),
    ),
  );
}