# --------------------------------------------------------------------------- # OnThisDay # A Plugin for Movable Type # # From Brad Choate # http://www.bradchoate.com/ # --------------------------------------------------------------------------- # This software is provided as-is. # You may use it for commercial or personal use. # If you distribute it, please keep this notice intact. # # Copyright (c) 2002-2007 Brad Choate # --------------------------------------------------------------------------- package MT::Plugin::OnThisDay; use strict; use MT 4.0; use base qw( MT::Plugin ); our $VERSION = '2.0'; my $plugin = MT::Plugin::OnThisDay->new({ name => "On This Day", version => $VERSION, author_name => "Brad Choate", author_link => "http://bradchoate.com/", description => "A plugin that provides a list of entries that were also posted on the day of the entry in context.", registry => { tags => { block => { OnThisDay => 'MTOnThisDay::Plugin::OnThisDay', }, }, template_snippets => { onthisday_1 => { label => 'On This Day', content => q{
  • }, } } }, }); MT->add_plugin($plugin); 1;