iRedAdmin::Admin - API for add, edit, delete, enable and disable User Admin
Version 0.01
use iRedAdmin;
my $iredadmin = iRedAdmin->new(
url => 'https://hostname.mydomain.com/iredadmin',
username => '[email protected]',
password => 'your_password',
cookie => '/home/user/cookie.txt',
lang => 3
);
my $admin = $iredadmin->Admin->Add(
email => '[email protected]',
password => 'your_password',
name => 'Foo',
lang => 3
);
print $iredadmin->error unless $admin; # print error if $admin is equal 0
Method to add Admin.
Email of Admin
password
Password of Admin
name
Display Name of Admin (Optional)
lang
Language default of Admin, default English. See more about lang
Method to edit Admin.
Email of Admin
name
Change Display Name of Admin
lang
Change language default of Admin
enable
1 to enable, 0 to disable, without set not change account
Method to change password of Admin.
Email of Admin
password
New password of Admin
Method to enable Admins.
Example
$iredadmin->Admin->Enable(
'[email protected]',
'[email protected]',
'[email protected]'
);
Method to disable Admins.
Example
$iredadmin->Admin->Disable(
'[email protected]',
'[email protected]',
'[email protected]'
);
Method to delete Admins.
Example
$iredadmin->Admin->Delete(
'[email protected]',
'[email protected]',
'[email protected]'
);
Lucas Tiago de Moraes, <[email protected]>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.