BUG 10106 "Verify php settings" SOLVED
- New feature
- Verify php settings
- Added new feature
- Added new options in ADMIN>Settings:
* Check PM requirements
* PHP Information
* Available from version 2.0.46
This commit is contained in:
38
workflow/engine/templates/setup/phpInfo.js
Normal file
38
workflow/engine/templates/setup/phpInfo.js
Normal file
@@ -0,0 +1,38 @@
|
||||
Ext.namespace("phpInfo");
|
||||
|
||||
phpInfo.application = {
|
||||
init: function ()
|
||||
{
|
||||
//Components
|
||||
var pnlMain = new Ext.Panel({
|
||||
id: "pnlMain",
|
||||
|
||||
layout: "border",
|
||||
|
||||
border: false,
|
||||
title: _("ID_PHP_INFO"),
|
||||
|
||||
items: [
|
||||
{
|
||||
xtype: "panel",
|
||||
|
||||
region: "center",
|
||||
|
||||
margins: {top: 10, right: 10, bottom: 10, left: 10},
|
||||
border: false,
|
||||
|
||||
html: "<iframe src=\"../setup/systemInfo?option=phpinfo\" width=\"100%\" height=\"100%\" frameborder=\"0\" style=\"border: 0;\"></iframe>"
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
//Load all panels
|
||||
var viewport = new Ext.Viewport({
|
||||
layout: "fit",
|
||||
items: [pnlMain]
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Ext.onReady(phpInfo.application.init, phpInfo.application);
|
||||
|
||||
Reference in New Issue
Block a user