%PDF- %PDF-
| Direktori : /usr/share/l.v.e-manager/interworx/lvemanager/Ctrl/Nodeworx/ |
| Current File : //usr/share/l.v.e-manager/interworx/lvemanager/Ctrl/Nodeworx/LveSettings.php |
<?php
/**
* Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved
*
* Licensed under CLOUD LINUX LICENSE AGREEMENT
* http://cloudlinux.com/docs/LICENSE.TXT
*/
include('nav.php');
class Ctrl_Nodeworx_LveSettings extends Ctrl_Nodeworx_Plugin {
protected function _init()
{
if( IW::NW()->isReseller() )
{
throw new IWorx_Exception_ActionBlocked( '##LG_ACTION_BLOCKED##' );
}
}
public function indexAction()
{
include_once('LVE.class.php');
$this->getView()->assign( 'title', 'CloudLinux Manager' );
$this->getView()->assign( 'template', 'admin/accounts' );
$this->getView()->assign( 'nav', nav('settings') );
$this->getView()->assign( 'accounts', $LVE->ReturnPanelUsers() );
$this->getView()->assign( 'ProcLVEVersion', $LVE->ReturnProcLVEVerion() );
}
}
?>