~jacekn/canonical-blog/canonical-blog-fixes

« back to all changes in this revision

Viewing changes to library/functions/general.php

  • Committer: Anthony Dillon
  • Date: 2013-05-16 16:54:16 UTC
  • Revision ID: anthony.dillon@canonical.com-20130516165416-94n070ff56fzl1w8
Fix authors social links

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    //add Job title
7
7
    $contactmethods['orderinteam'] = 'Team Order';
8
8
    // Add IRC
9
 
    $contactmethods['launchpad'] = 'Launchpad username';
 
9
    $contactmethods['user_launchpad'] = 'Launchpad username';
10
10
    // Add Google profile
11
 
    $contactmethods['google'] = 'Google+ username';
 
11
    $contactmethods['user_google'] = 'Google+ username';
12
12
    // Add Twitter
13
 
    $contactmethods['twitter'] = 'Twitter username';
 
13
    $contactmethods['user_twitter'] = 'Twitter username';
14
14
    //add Facebook
15
 
    $contactmethods['facebook'] = 'Facebook username';
 
15
    $contactmethods['user_facebook'] = 'Facebook username';
16
16
    //add image id
17
17
    $contactmethods['user_photo'] = 'Profile photo';
18
18
    //add location
19
 
    $contactmethods['location'] = 'Location (Indicate your city and country. Eg. London, United Kingdom)';
 
19
    $contactmethods['user_location'] = 'Location (Indicate your city and country. Eg. London, United Kingdom)';
20
20
        
21
21
    return $contactmethods;
22
22
}