You are here

function avatar_selection_theme in Avatar Selection 6

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

Implementation of hook_theme().

File

./avatar_selection.module, line 521
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(
      'arguments' => array(
        'form_id' => NULL,
        'class' => NULL,
        'total' => 10,
        'limit' => 10,
      ),
    ),
    'avatar_selection_pager_link' => array(
      'arguments' => array(
        'text' => NULL,
        'url' => NULL,
        'page' => 0,
        'form_id' => NULL,
        'dom_identifier' => NULL,
      ),
    ),
  );
}