Page MenuHomePhorge

PhortuneAccountEmailStatus.php
No OneTemporary

Size
676 B
Referenced Files
None
Subscribers
None

PhortuneAccountEmailStatus.php

<?php
final class PhortuneAccountEmailStatus
extends Phobject {
const STATUS_ACTIVE = 'active';
const STATUS_DISABLED = 'disabled';
const STATUS_UNSUBSCRIBED = 'unsubscribed';
public static function getDefaultStatusConstant() {
return self::STATUS_ACTIVE;
}
private static function getMap() {
return array(
self::STATUS_ACTIVE => array(
'name' => pht('Active'),
'closed' => false,
),
self::STATUS_DISABLED => array(
'name' => pht('Disabled'),
'closed' => true,
),
self::STATUS_UNSUBSCRIBED => array(
'name' => pht('Unsubscribed'),
'closed' => true,
),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 13, 6:01 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
102005
Default Alt Text
PhortuneAccountEmailStatus.php (676 B)

Event Timeline