icons for DHCP modules
This commit is contained in:
parent
2e0bec2dc5
commit
a5ed2d495d
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
|
@ -4,7 +4,7 @@ $Id$
|
|||
|
||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
Copyright (C) 2008 Thomas Manninger
|
||||
2008 - 2009 Roland Gruber
|
||||
2008 - 2010 Roland Gruber
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -65,6 +65,8 @@ class ddns extends baseModule {
|
|||
$return["alias"] = _("DDNS");
|
||||
// this is a base module
|
||||
$return["is_base"] = false;
|
||||
// icon
|
||||
$return['icon'] = 'dhcpBig.png';
|
||||
// RDN attribute
|
||||
$return["RDN"] = array("cn" => "high");
|
||||
// LDAP filter
|
||||
|
|
|
@ -101,6 +101,8 @@ class dhcp_settings extends baseModule {
|
|||
$return["alias"] = _("DHCP settings");
|
||||
// this is a base module
|
||||
$return["is_base"] = true;
|
||||
// icon
|
||||
$return['icon'] = 'dhcpBig.png';
|
||||
// RDN attribute
|
||||
$return["RDN"] = array("cn" => "high");
|
||||
// LDAP filter
|
||||
|
|
|
@ -4,7 +4,7 @@ $Id$
|
|||
|
||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
Copyright (C) 2008 Thomas Manninger
|
||||
2008 - 2009 Roland Gruber
|
||||
2008 - 2010 Roland Gruber
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -63,6 +63,8 @@ class fixed_ip extends baseModule {
|
|||
$return["alias"] = _("Fixed IP");
|
||||
// this is a base module
|
||||
$return["is_base"] = false;
|
||||
// icon
|
||||
$return['icon'] = 'network-wired.png';
|
||||
// RDN attribute
|
||||
$return["RDN"] = array("cn" => "high");
|
||||
// LDAP filter
|
||||
|
|
|
@ -4,7 +4,7 @@ $Id$
|
|||
|
||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||
Copyright (C) 2008 Thomas Manninger
|
||||
2008 - 2009 Roland Gruber
|
||||
2008 - 2010 Roland Gruber
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -60,6 +60,8 @@ class range extends baseModule {
|
|||
$return["alias"] = _("Ranges");
|
||||
// this is a base module
|
||||
$return["is_base"] = false;
|
||||
// icon
|
||||
$return['icon'] = 'network-wired.png';
|
||||
// RDN attribute
|
||||
$return["RDN"] = array("cn" => "high");
|
||||
// LDAP filter
|
||||
|
|
Loading…
Reference in New Issue