| | |
| | | <?php |
| | | |
| | | /* |
| | | Copyright (c) 2008, Till Brehm, projektfarm Gmbh |
| | | Copyright (c) 2007, Till Brehm, projektfarm Gmbh |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | |
| | | var $plugin_name = 'network_settings_plugin'; |
| | | var $class_name = 'network_settings_plugin'; |
| | | |
| | | |
| | | //* This function is called during ispconfig installation to determine |
| | | // if a symlink shall be created for this plugin. |
| | | function onInstall() { |
| | | global $conf; |
| | | |
| | | return true; |
| | | |
| | | } |
| | | |
| | | /* |
| | | This function is called when the plugin is loaded |
| | |
| | | $app->log("Changed Network settings",LOGLEVEL_DEBUG); |
| | | |
| | | exec('/etc/init.d/networking force-reload'); |
| | | } else { |
| | | if(is_file('/etc/debian_version')) { |
| | | $app->log("Network configuration disabled in server settings.",LOGLEVEL_WARN); |
| | | } else { |
| | | $app->log("Network configuration not available for this linux distribution.",LOGLEVEL_DEBUG); |
| | | } |
| | | } |
| | | |
| | | } |