You are here

function profile_theme in Profile 2 8

Implements hook_theme().

File

./profile.module, line 228
Support for configurable user profiles.

Code

function profile_theme() {
  return array(
    'profile_items' => array(
      'variables' => array(
        'profile_items' => NULL,
        'type' => NULL,
      ),
      'template' => 'profile-items',
    ),
  );
}