← 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:08 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/Permission.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11133µs37µsClass::C3::Componentised::::BEGIN@1.1362 Class::C3::Componentised::BEGIN@1.1362
11111µs21µsKoha::Schema::Result::Permission::::BEGIN@13Koha::Schema::Result::Permission::BEGIN@13
11110µs89µsKoha::Schema::Result::Permission::::BEGIN@16Koha::Schema::Result::Permission::BEGIN@16
1119µs16µsKoha::Schema::Result::Permission::::BEGIN@14Koha::Schema::Result::Permission::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1241µs
# spent 37µs (33+4) within Class::C3::Componentised::BEGIN@1.1362 which was called: # once (33µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 37µs making 1 call to Class::C3::Componentised::BEGIN@1.1362 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Permission;
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::Permission
10
11=cut
12
13231µs
# spent 21µs (11+10) within Koha::Schema::Result::Permission::BEGIN@13 which was called: # once (11µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 21µs making 1 call to Koha::Schema::Result::Permission::BEGIN@13 # spent 10µs making 1 call to strict::import
14223µs
# spent 16µs (9+7) within Koha::Schema::Result::Permission::BEGIN@14 which was called: # once (9µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 16µs making 1 call to Koha::Schema::Result::Permission::BEGIN@14 # spent 7µs making 1 call to warnings::import
15
162168µs
# spent 89µs (10+79) within Koha::Schema::Result::Permission::BEGIN@16 which was called: # once (10µs+79µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 89µs making 1 call to Koha::Schema::Result::Permission::BEGIN@16 # spent 79µs making 1 call to base::import
17
18=head1 TABLE: C<permissions>
19
20=cut
21
221334µs__PACKAGE__->table("permissions");
# spent 334µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 module_bit
27
28 data_type: 'integer'
29 default_value: 0
30 is_foreign_key: 1
31 is_nullable: 0
32
33=head2 code
34
35 data_type: 'varchar'
36 default_value: (empty string)
37 is_nullable: 0
38 size: 64
39
40=head2 description
41
42 data_type: 'varchar'
43 is_nullable: 1
44 size: 255
45
46=cut
47
481783µs__PACKAGE__->add_columns(
# spent 783µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
49 "module_bit",
50 {
51 data_type => "integer",
52 default_value => 0,
53 is_foreign_key => 1,
54 is_nullable => 0,
55 },
56 "code",
57 { data_type => "varchar", default_value => "", is_nullable => 0, size => 64 },
58 "description",
59 { data_type => "varchar", is_nullable => 1, size => 255 },
60);
61
62=head1 PRIMARY KEY
63
64=over 4
65
66=item * L</module_bit>
67
68=item * L</code>
69
70=back
71
72=cut
73
74181µs__PACKAGE__->set_primary_key("module_bit", "code");
# spent 81µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
75
76=head1 RELATIONS
77
78=head2 module_bit
79
80Type: belongs_to
81
82Related object: L<Koha::Schema::Result::Userflag>
83
84=cut
85
861759µs__PACKAGE__->belongs_to(
# spent 759µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
87 "module_bit",
88 "Koha::Schema::Result::Userflag",
89 { bit => "module_bit" },
90 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
91);
92
93=head2 user_permissions
94
95Type: has_many
96
97Related object: L<Koha::Schema::Result::UserPermission>
98
99=cut
100
1011310µs__PACKAGE__->has_many(
# spent 310µs making 1 call to DBIx::Class::Relationship::HasMany::has_many
102 "user_permissions",
103 "Koha::Schema::Result::UserPermission",
104 {
105 "foreign.code" => "self.code",
106 "foreign.module_bit" => "self.module_bit",
107 },
108 { cascade_copy => 0, cascade_delete => 0 },
109);
110
111
112# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
113# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ut3lzlxoPPoIIwmhJViV1Q
114
115
116# You can replace this text with custom content, and it will be preserved on regeneration
1171;