line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# -*- perl -*- |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# $Id: WE_Navigation_WML.pm,v 1.1 2004/02/18 18:03:56 eserte Exp $ |
5
|
|
|
|
|
|
|
# Author: Slaven Rezic |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# Copyright (C) 2004 Slaven Rezic. |
8
|
|
|
|
|
|
|
# This is free software; you can redistribute it and/or modify it under the |
9
|
|
|
|
|
|
|
# terms of the GNU General Public License, see the file COPYING. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
# Mail: slaven@rezic.de |
13
|
|
|
|
|
|
|
# WWW: http://we-framework.sourceforge.net |
14
|
|
|
|
|
|
|
# |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
package WE_Frontend::Plugin::WE_Navigation_WML; |
17
|
1
|
|
|
1
|
|
1008
|
use base qw(WE_Frontend::Plugin::WE_Navigation); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
74
|
|
18
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
7
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
20
|
1
|
|
|
1
|
|
5
|
use vars qw($VERSION); |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
96
|
|
21
|
|
|
|
|
|
|
$VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
require WE_Frontend::Plugin::WE_Navigation_WML::Object; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
sub Object { |
26
|
0
|
|
|
0
|
1
|
|
"WE_Frontend::Plugin::WE_Navigation_WML::Object"; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |