line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
3
|
|
|
3
|
|
15
|
use strict; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
104
|
|
2
|
3
|
|
|
3
|
|
16
|
use warnings; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
298
|
|
3
|
|
|
|
|
|
|
package Email::Abstract::Plugin; |
4
|
|
|
|
|
|
|
# ABSTRACT: a base class for Email::Abstract plugins |
5
|
|
|
|
|
|
|
$Email::Abstract::Plugin::VERSION = '3.008'; |
6
|
|
|
|
|
|
|
#pod =method is_available |
7
|
|
|
|
|
|
|
#pod |
8
|
|
|
|
|
|
|
#pod This method returns true if the plugin should be considered available for |
9
|
|
|
|
|
|
|
#pod registration. Plugins that return false from this method will not be |
10
|
|
|
|
|
|
|
#pod registered when Email::Abstract is loaded. |
11
|
|
|
|
|
|
|
#pod |
12
|
|
|
|
|
|
|
#pod =cut |
13
|
|
|
|
|
|
|
|
14
|
9
|
|
|
9
|
1
|
23
|
sub is_available { 1 } |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |