Daje-Plugin-Authorities
view release on metacpan or search on metacpan
lib/Daje/Database/Model/Super/AuthoritiesFunction.pm view on Meta::CPAN
#
# METHODS
# =======
#
#
# LICENSE
# =======
#
# Copyright (C) janeskil1525.
#
# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
# AUTHOR
# ======
#
# janeskil1525 E<lt>janeskil1525@gmail.com
#
# This file is generated automatically by Daje Tools 2026-03-01 05:33:52.
# It will be re-created by Daje Tools again and any changes
# will be over written.
#
# <!-- Autogenerated file 2026-03-01 05:33:52 -->
our $VERSION = '0.01';
has 'fields' => '"authorities_function_pkey", "editnum", "insby", "insdatetime", "modby", "moddatetime","description",
"authorities_plugin_fkey","name"';
has 'primary_key_name' => "authorities_function_pkey";
has 'table_name' => "authorities_function"; #
has 'mandatory' => 'authorities_plugin_fkey,name,';
has 'workflow' => '';
async sub load_authorities_plugin_fkey_p($self, $authorities_plugin_fkey) {
return $self->load_authorities_plugin_fkey($authorities_plugin_fkey);
}
sub load_authorities_plugin_fkey($self, $authorities_plugin_fkey) {
return $self->load_fkey(
$self->table_name, $self->fields(), "authorities_plugin_fkey", $authorities_plugin_fkey
);
}
async sub load_authorities_function_pkey_p($self, $authorities_function_pkey) {
return $self->load_authorities_function_pkey($authorities_function_pkey);
}
sub load_authorities_function_pkey($self, $authorities_function_pkey) {
return $self->load_pk(
$self->table_name, $self->fields(), $self->primary_key_name(), $authorities_function_pkey
);
}
sub insert($self, $data) {
my $result = $self->SUPER::insert(
$self->table_name, $data, $self->primary_key_name
);
return $result;
}
sub update($self, $data) {
return $self->SUPER::update
(
$self->table_name, $data,
{
$self->primary_key_name() => $data->{$self->primary_key_name()}
}
);
}
sub delete($self, $primary_key) {
return $self->SUPER::delete($self->table_name, { $self->primary_key_name() => $primary_key});
}
1;
( run in 0.704 second using v1.01-cache-2.11-cpan-39bf76dae61 )