Projekt

Allgemein

Profil

Herunterladen (296 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
package SL::Template::Plugin::JavaScript;

use base qw( Template::Plugin );
use Template::Plugin;

use strict;

sub new {
my $class = shift;
my $context = shift;

bless { }, $class;
}

sub escape {
my $self = shift;
my $text = shift;

$text =~ s|\"|\\\"|g;

return $text;
}

1;


(1-1/5)