← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:16:49 2016
Reported on Fri Jan 8 14:23:09 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/CreatorLayout.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11172µs76µsClass::C3::Componentised::::BEGIN@1.1780 Class::C3::Componentised::BEGIN@1.1780
11110µs18µsKoha::Schema::Result::CreatorLayout::::BEGIN@14Koha::Schema::Result::CreatorLayout::BEGIN@14
11110µs18µsKoha::Schema::Result::CreatorLayout::::BEGIN@13Koha::Schema::Result::CreatorLayout::BEGIN@13
11110µs77µsKoha::Schema::Result::CreatorLayout::::BEGIN@16Koha::Schema::Result::CreatorLayout::BEGIN@16
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1279µs
# spent 76µs (72+3) within Class::C3::Componentised::BEGIN@1.1780 which was called: # once (72µs+3µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 76µs making 1 call to Class::C3::Componentised::BEGIN@1.1780 # spent 3µs making 1 call to utf8::import
2package Koha::Schema::Result::CreatorLayout;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7=head1 NAME
8
9Koha::Schema::Result::CreatorLayout
10
11=cut
12
13227µs
# spent 18µs (10+9) within Koha::Schema::Result::CreatorLayout::BEGIN@13 which was called: # once (10µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 18µs making 1 call to Koha::Schema::Result::CreatorLayout::BEGIN@13 # spent 9µs making 1 call to strict::import
14225µs
# spent 18µs (10+7) within Koha::Schema::Result::CreatorLayout::BEGIN@14 which was called: # once (10µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 18µs making 1 call to Koha::Schema::Result::CreatorLayout::BEGIN@14 # spent 7µs making 1 call to warnings::import
15
162145µs
# spent 77µs (10+68) within Koha::Schema::Result::CreatorLayout::BEGIN@16 which was called: # once (10µs+68µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 77µs making 1 call to Koha::Schema::Result::CreatorLayout::BEGIN@16 # spent 68µs making 1 call to base::import
17
18=head1 TABLE: C<creator_layouts>
19
20=cut
21
221304µs__PACKAGE__->table("creator_layouts");
# spent 304µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 layout_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 barcode_type
33
34 data_type: 'char'
35 default_value: 'CODE39'
36 is_nullable: 0
37 size: 100
38
39=head2 start_label
40
41 data_type: 'integer'
42 default_value: 1
43 is_nullable: 0
44
45=head2 printing_type
46
47 data_type: 'char'
48 default_value: 'BAR'
49 is_nullable: 0
50 size: 32
51
52=head2 layout_name
53
54 data_type: 'char'
55 default_value: 'DEFAULT'
56 is_nullable: 0
57 size: 20
58
59=head2 guidebox
60
61 data_type: 'integer'
62 default_value: 0
63 is_nullable: 1
64
65=head2 oblique_title
66
67 data_type: 'integer'
68 default_value: 1
69 is_nullable: 1
70
71=head2 font
72
73 data_type: 'char'
74 default_value: 'TR'
75 is_nullable: 0
76 size: 10
77
78=head2 font_size
79
80 data_type: 'integer'
81 default_value: 10
82 is_nullable: 0
83
84=head2 units
85
86 data_type: 'char'
87 default_value: 'POINT'
88 is_nullable: 0
89 size: 20
90
91=head2 callnum_split
92
93 data_type: 'integer'
94 default_value: 0
95 is_nullable: 1
96
97=head2 text_justify
98
99 data_type: 'char'
100 default_value: 'L'
101 is_nullable: 0
102 size: 1
103
104=head2 format_string
105
106 data_type: 'varchar'
107 default_value: 'barcode'
108 is_nullable: 0
109 size: 210
110
111=head2 layout_xml
112
113 data_type: 'text'
114 is_nullable: 0
115
116=head2 creator
117
118 data_type: 'char'
119 default_value: 'Labels'
120 is_nullable: 0
121 size: 15
122
123=cut
124
12518.92ms__PACKAGE__->add_columns(
# spent 8.92ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
126 "layout_id",
127 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
128 "barcode_type",
129 {
130 data_type => "char",
131 default_value => "CODE39",
132 is_nullable => 0,
133 size => 100,
134 },
135 "start_label",
136 { data_type => "integer", default_value => 1, is_nullable => 0 },
137 "printing_type",
138 { data_type => "char", default_value => "BAR", is_nullable => 0, size => 32 },
139 "layout_name",
140 {
141 data_type => "char",
142 default_value => "DEFAULT",
143 is_nullable => 0,
144 size => 20,
145 },
146 "guidebox",
147 { data_type => "integer", default_value => 0, is_nullable => 1 },
148 "oblique_title",
149 { data_type => "integer", default_value => 1, is_nullable => 1 },
150 "font",
151 { data_type => "char", default_value => "TR", is_nullable => 0, size => 10 },
152 "font_size",
153 { data_type => "integer", default_value => 10, is_nullable => 0 },
154 "units",
155 { data_type => "char", default_value => "POINT", is_nullable => 0, size => 20 },
156 "callnum_split",
157 { data_type => "integer", default_value => 0, is_nullable => 1 },
158 "text_justify",
159 { data_type => "char", default_value => "L", is_nullable => 0, size => 1 },
160 "format_string",
161 {
162 data_type => "varchar",
163 default_value => "barcode",
164 is_nullable => 0,
165 size => 210,
166 },
167 "layout_xml",
168 { data_type => "text", is_nullable => 0 },
169 "creator",
170 {
171 data_type => "char",
172 default_value => "Labels",
173 is_nullable => 0,
174 size => 15,
175 },
176);
177
178=head1 PRIMARY KEY
179
180=over 4
181
182=item * L</layout_id>
183
184=back
185
186=cut
187
188199µs__PACKAGE__->set_primary_key("layout_id");
# spent 99µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
189
190
191# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-22 10:32:28
192# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kRzOQpJWvu5ZXfurfpmqzg
193
194
195# You can replace this text with custom content, and it will be preserved on regeneration
1961;