line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Mojolicious::Plugin::DataTables::SSP::Column; |
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
12
|
use Mojo::Base -base; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '1.02'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has 'data'; |
9
|
|
|
|
|
|
|
has 'database'; |
10
|
|
|
|
|
|
|
has 'formatter'; |
11
|
|
|
|
|
|
|
has 'label'; |
12
|
|
|
|
|
|
|
has 'name'; |
13
|
|
|
|
|
|
|
has 'orderable'; |
14
|
|
|
|
|
|
|
has 'search'; |
15
|
|
|
|
|
|
|
has 'searchable'; |
16
|
|
|
|
|
|
|
has 'row'; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=encoding utf8 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Mojolicious::Plugin::DataTables::SSP::Column - DataTables SSP Column Helper |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Mojolicious |
29
|
|
|
|
|
|
|
$self->plugin('DataTables'); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
# Mojolicious::Lite |
32
|
|
|
|
|
|
|
plugin 'DataTables'; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
L is a L plugin to add DataTables SSP (Server-Side Protocol) support in your Mojolicious application. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 METHODS |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L implements the following methods. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 data |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 database |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 formatter |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 label |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 name |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 orderable |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 search |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 searchable |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 row |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 SEE ALSO |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
L, L, L, L. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |