# Copyright (c) 2007-2009 bivio Software, Inc. All Rights Reserved. # # Visit http://www.bivio.biz for more info. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of the # License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; If not, you may get a copy from: # http://www.opensource.org/licenses/lgpl-license.html # # $Id: RowTagKey.pm,v 1.21 2011/03/07 16:54:27 moeller Exp $ package Bivio::Delegate::RowTagKey; use strict; use Bivio::Base 'Bivio.Delegate'; our($VERSION) = sprintf('%d.%02d', q$Revision: 1.21 $ =~ /\d+/g); sub get_delegate_info { return [ UNKNOWN => 0, ERROR_DETAIL => [1, 'Text'], RELATED_ID => [2, 'PrimaryId'], DEFAULT_TUPLE_MONIKER => [3, 'TupleMoniker'], MAIL_SUBJECT_PREFIX => [4, 'MailSubject'], BULLETIN_MAIL_MODE => [5, 'BulletinMailMode'], #6 PAGE_SIZE => [7, 'PageSize'], CANONICAL_EMAIL_ALIAS => [8, 'Email'], CANONICAL_SENDER_EMAIL => [9, 'Email'], CRM_SUBJECT_PREFIX => [10, 'MailSubject'], #11 TEXTAREA_WRAP_LINES => [12, 'BooleanFalseDefault'], TIME_ZONE => [13, 'TimeZone'], MAIL_WANT_REPLY_TO => [14, 'MailWantReplyTo'], MAIL_VISIBILITY => [15, 'MailVisibility'], BULLETIN_BODY_TEMPLATE => [16, 'BulletinBodyTemplate'], LAST_RESERVED_VALUE => 99, ]; } 1;