line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTML::Widgets::NavMenu::Iterator::Html::Item; |
2
|
|
|
|
|
|
|
$HTML::Widgets::NavMenu::Iterator::Html::Item::VERSION = '1.0901'; |
3
|
11
|
|
|
11
|
|
67
|
use strict; |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
300
|
|
4
|
11
|
|
|
11
|
|
47
|
use warnings; |
|
11
|
|
|
|
|
19
|
|
|
11
|
|
|
|
|
248
|
|
5
|
|
|
|
|
|
|
|
6
|
11
|
|
|
11
|
|
44
|
use parent qw(HTML::Widgets::NavMenu::Tree::Iterator::Item); |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
46
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub get_url_type |
9
|
|
|
|
|
|
|
{ |
10
|
646
|
|
|
646
|
1
|
863
|
my $item = shift; |
11
|
|
|
|
|
|
|
return ( $item->_node()->url_type() |
12
|
646
|
|
100
|
|
|
3582
|
|| $item->_accum_state()->{'rec_url_type'} |
13
|
|
|
|
|
|
|
|| "rel" ); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |