You are here

function drupagram_user_categories in Drupagram 7

Implements hook_user_categories().

File

./drupagram.module, line 88
Provides API integration with the Instagram microblogging service.

Code

function drupagram_user_categories() {
  return array(
    array(
      'name' => 'drupagram',
      'title' => t('Instagram accounts'),
      'weight' => 3,
    ),
  );
}