Subversion Repositories oidplus

Rev

Rev 1201 | Rev 1321 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1201 Rev 1266
Line 35... Line 35...
35
if (OIDplus::baseConfig()->getValue('DISABLE_PLUGIN_ViaThinkSoft\OIDplus\OIDplusPageAdminNostalgia', false)) {
35
if (OIDplus::baseConfig()->getValue('DISABLE_PLUGIN_ViaThinkSoft\OIDplus\OIDplusPageAdminNostalgia', false)) {
36
        throw new OIDplusException(_L('This plugin was disabled by the system administrator!'));
36
        throw new OIDplusException(_L('This plugin was disabled by the system administrator!'));
37
}
37
}
38
 
38
 
39
if (!OIDplus::authUtils()->isAdminLoggedIn()) {
39
if (!OIDplus::authUtils()->isAdminLoggedIn()) {
40
        throw new OIDplusHtmlException(_L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')));
40
        throw new OIDplusHtmlException(_L('You need to <a %1>log in</a> as administrator.',OIDplus::gui()->link('oidplus:login$admin')), null, 401);
41
}
41
}
42
 
42
 
43
if (!class_exists('ZipArchive')) {
43
if (!class_exists('ZipArchive')) {
44
        throw new OIDplusException(_L('The PHP extension "ZipArchive" needs to be installed to create a ZIP archive with an included database. Otherwise, you can just download the plain program without data.'));
44
        throw new OIDplusException(_L('The PHP extension "ZipArchive" needs to be installed to create a ZIP archive with an included database. Otherwise, you can just download the plain program without data.'));
45
}
45
}