1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: Notification.pm 2406 2008-05-20 22:58:32Z bsmith $
package MT::Notification;
use strict;
use MT::Blog;
use MT::Object;
@MT::Notification::ISA = qw( MT::Object );
__PACKAGE__->install_properties({
column_defs => {
'id' => 'integer not null auto_increment',
'blog_id' => 'integer not null',
'name' => 'string(50)',
'email' => 'string(75)',
'url' => 'string(255)',
},
indexes => {
blog_id => 1,
email => 1,
},
child_of => 'MT::Blog',
datasource => 'notification',
audit => 1,
primary_key => 'id',
listing_screen => 1,
});
sub class_label {
MT->translate('Contact');
}
sub class_label_plural {
MT->translate('Contacts');
}
1;
__END__
=head1 NAME
MT::Notification - Movable Type notification list record
=head1 SYNOPSIS
use MT::Notification;
my $note = MT::Notification->new;
$note->blog_id($blog->id);
$note->email($email_address);
$note->save
or die $note->errstr;
=head1 DESCRIPTION
An I<MT::Notification> object represents an email address in the notification
list for your blog in the Movable Type system. It contains the email address,
as well as some metadata about the record.
=head1 USAGE
As a subclass of I<MT::Object>, I<MT::Notification> inherits all of the
data-management and -storage methods from that class; thus you should look
at the I<MT::Object> documentation for details about creating a new object,
loading an existing object, saving an object, etc.
=head1 DATA ACCESS METHODS
The I<MT::Notification> object holds the following pieces of data. These
fields can be accessed and set using the standard data access methods
described in the I<MT::Object> documentation.
=over 4
=item * id
The numeric ID of the notification record.
=item * blog_id
The numeric ID of the blog to which this notification record belongs.
=item * email
The email address of the user in the notification record.
=item * name
The name of the user in the notification record.
=item * url
The homepage URL of the user in the notification record.
=item * created_on
The timestamp denoting when the notification record was created, in the format
C<YYYYMMDDHHMMSS>. Note that the timestamp has already been adjusted for the
selected timezone.
=item * modified_on
The timestamp denoting when the notification record was last modified, in the
format C<YYYYMMDDHHMMSS>. Note that the timestamp has already been adjusted
for the selected timezone.
=back
=head1 DATA LOOKUP
In addition to numeric ID lookup, you can look up or sort records by any
combination of the following fields. See the I<load> documentation in
I<MT::Object> for more information.
=over 4
=item * blog_id
=back
=head1 AUTHOR & COPYRIGHTS
Please see the I<MT> manpage for author, copyright, and license information.
=cut
|