function drupagram_theme in Drupagram 7
Same name and namespace in other branches
- 6 drupagram.module \drupagram_theme()
Implements hook_theme().
File
- ./
drupagram.module, line 101 - Provides API integration with the Instagram microblogging service.
Code
function drupagram_theme() {
return array(
'drupagram_account_list_form' => array(
'render element' => 'form',
),
'drupagram_likes' => array(
'variables' => array(
'count' => NULL,
'data' => array(),
),
'file' => 'drupagram.theme.inc',
),
'drupagram_account' => array(
'variables' => array(
'username' => NULL,
'profile_picture' => NULL,
'id' => NULL,
'full_name' => NULL,
),
'file' => 'drupagram.theme.inc',
),
'drupagram_caption' => array(
'variables' => array(
'id' => NULL,
'text' => NULL,
'from' => array(),
'created_time' => NULL,
),
'file' => 'drupagram.theme.inc',
),
'drupagram_likes_data' => array(
'variables' => array(
'data' => array(),
),
'file' => 'drupagram.theme.inc',
),
'drupagram_likes_data_item' => array(
'variables' => array(
'id' => NULL,
'username' => NULL,
'full_name' => NULL,
'profile_picture' => NULL,
),
'file' => 'drupagram.theme.inc',
),
);
}