2024-04-25 17:23:07 +02:00
|
|
|
#
|
|
|
|
# Routines to be editted by the developer to provide validation for parameters
|
|
|
|
# and provison of the control data for table(s)
|
|
|
|
#
|
2024-04-26 10:26:38 +02:00
|
|
|
#
|
|
|
|
# Generated by SM2Gen version:${version}
|
|
|
|
#
|
2024-04-25 17:23:07 +02:00
|
|
|
|
|
|
|
use esmith::util;
|
|
|
|
use esmith::HostsDB;
|
|
|
|
use esmith::AccountsDB;
|
|
|
|
use esmith::NetworksDB;
|
|
|
|
use esmith::HostsDB;
|
|
|
|
use esmith::DomainsDB;
|
|
|
|
|
|
|
|
|
|
|
|
#The most common ones
|
|
|
|
our $cdb = esmith::ConfigDB->open() || die("Couldn't open config db");
|
|
|
|
our $adb = esmith::AccountsDB->open() || die("Couldn't open Accounts db");
|
|
|
|
our $ndb = esmith::NetworksDB->open() || die("Couldn't open Network db");
|
|
|
|
our $hdb = esmith::HostsDB->open() || die("Couldn't open Hosts db");
|
|
|
|
our $ddb = esmith::DomainsDB->open() || die("Couldn't open Domains db");
|
|
|
|
|
|
|
|
# Validation routines - parameters for each panel
|
|
|
|
<tal:block tal:repeat="panel panels">
|
|
|
|
sub validate_${panel} {
|
|
|
|
$ret = 'ok';
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
</tal:block>
|
|
|
|
|
|
|
|
# Get control data for tables(s)
|
|
|
|
<tal:block tal:repeat="tablecontrol tablecontrols">
|
|
|
|
sub get_${tablecontrol} {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
</tal:block>
|
|
|
|
1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|