File: Timestamp.pm

package info (click to toggle)
libtext-trac-perl 0.24-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 1,462; makefile: 10
file content (13 lines) | stat: -rwxr-xr-x 172 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Text::Trac::Macro::Timestamp;

use strict;
use warnings;

our $VERSION = '0.24';

sub process {
	my $class = shift;
	return '<b>' . localtime(time) . '</b>';
}

1;