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.0902'; |
3
|
11
|
|
|
11
|
|
59
|
use strict; |
|
11
|
|
|
|
|
24
|
|
|
11
|
|
|
|
|
322
|
|
4
|
11
|
|
|
11
|
|
48
|
use warnings; |
|
11
|
|
|
|
|
21
|
|
|
11
|
|
|
|
|
241
|
|
5
|
|
|
|
|
|
|
|
6
|
11
|
|
|
11
|
|
45
|
use parent qw(HTML::Widgets::NavMenu::Tree::Iterator::Item); |
|
11
|
|
|
|
|
19
|
|
|
11
|
|
|
|
|
57
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub get_url_type |
9
|
|
|
|
|
|
|
{ |
10
|
684
|
|
|
684
|
1
|
967
|
my $item = shift; |
11
|
|
|
|
|
|
|
return ( $item->_node()->url_type() |
12
|
684
|
|
100
|
|
|
3771
|
|| $item->_accum_state()->{'rec_url_type'} |
13
|
|
|
|
|
|
|
|| "rel" ); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |