line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
####################################################################### |
2
|
|
|
|
|
|
|
# ex: set ts=8 sw=4 et |
3
|
|
|
|
|
|
|
######################################################################### |
4
|
|
|
|
|
|
|
package WWW::Facebook::API::Profile; |
5
|
|
|
|
|
|
|
|
6
|
34
|
|
|
34
|
|
374
|
use warnings; |
|
34
|
|
|
|
|
68
|
|
|
34
|
|
|
|
|
1436
|
|
7
|
34
|
|
|
34
|
|
177
|
use strict; |
|
34
|
|
|
|
|
240
|
|
|
34
|
|
|
|
|
2581
|
|
8
|
34
|
|
|
34
|
|
173
|
use Carp; |
|
34
|
|
|
|
|
273
|
|
|
34
|
|
|
|
|
11539
|
|
9
|
|
|
|
|
|
|
|
10
|
0
|
|
|
0
|
1
|
|
sub set_fbml { return shift->base->call( 'profile.setFBML', @_ ) } |
11
|
0
|
|
|
0
|
1
|
|
sub get_fbml { return shift->base->call( 'profile.getFBML', @_ ) } |
12
|
0
|
|
|
0
|
1
|
|
sub get_info { return shift->base->call( 'profile.getInfo', @_ ) } |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub get_info_options { |
15
|
0
|
|
|
0
|
1
|
|
return shift->base->call( 'profile.getInfoOptions', @_ ); |
16
|
|
|
|
|
|
|
} |
17
|
0
|
|
|
0
|
1
|
|
sub set_info { return shift->base->call( 'profile.setInfo', @_ ) } |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub set_info_options { |
20
|
0
|
|
|
0
|
1
|
|
return shift->base->call( 'profile.setInfoOptions', @_ ); |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; # Magic true value required at end of module |
24
|
|
|
|
|
|
|
__END__ |