|
Lines 19-31
package C4::TmplToken;
Link Here
|
| 19 |
|
19 |
|
| 20 |
|
20 |
|
| 21 |
use strict; |
21 |
use strict; |
| 22 |
#use warnings; FIXME - Bug 2505 |
22 |
use warnings; |
| 23 |
use C4::TmplTokenType; |
23 |
use C4::TmplTokenType; |
| 24 |
require Exporter; |
|
|
| 25 |
|
| 26 |
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); |
| 27 |
|
| 28 |
############################################################################### |
| 29 |
|
24 |
|
| 30 |
=head1 NAME |
25 |
=head1 NAME |
| 31 |
|
26 |
|
|
Lines 37-50
This is a class representing a token scanned from an HTML::Template .tmpl file.
Link Here
|
| 37 |
|
32 |
|
| 38 |
=cut |
33 |
=cut |
| 39 |
|
34 |
|
| 40 |
############################################################################### |
35 |
our $VERSION = 3.07.00.049; |
| 41 |
|
36 |
|
| 42 |
$VERSION = 3.07.00.049; |
|
|
| 43 |
|
| 44 |
@ISA = qw(Exporter); |
| 45 |
@EXPORT_OK = qw(); |
| 46 |
|
| 47 |
############################################################################### |
| 48 |
|
37 |
|
| 49 |
sub new { |
38 |
sub new { |
| 50 |
my $this = shift; |
39 |
my $this = shift; |
| 51 |
- |
|
|