This commit is contained in:
cutemeli
2025-12-22 10:35:30 +00:00
parent 0bfc6c8425
commit 5ce7ca2c5d
38927 changed files with 0 additions and 4594700 deletions

View File

@@ -1,4 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>

View File

@@ -1,99 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<script type="text/javascript">
//<![CDATA[
Jsw.onReady(function() {
new Jsw.Hint({
renderTo: 'main',
hint: <?php echo $this->jsLmsg('subscriptionHint'); ?>
});
new Jsw.bar.Tabs({
renderTo: 'main',
type: 'dynamic',
cls: 'tabs',
items: [{
componentType: 'Jsw.bar.Button',
title: <?php echo $this->jsLmsg('tabResources'); ?>,
tabId: 'tab-resources',
active: true,
content: new Jsw.layout.TwoColumns({
items: [{
componentType: 'Jsw.Panel',
cls: 'form-box form-box-50x50',
items: [{
componentType: 'Jsw.Hint',
hint: <?php echo $this->jsLmsg('resourcesSummaryHint'); ?>
},
<?php foreach ($this->mainResourceLimits as $limitName => $limitDetails): ?>
{
componentType: 'Jsw.form.DisplayField',
fieldLabel: <?php echo $this->jsEscape($limitDetails['title']); ?>,
value: <?php echo $this->jsEscape($limitDetails['limitString']); ?>
},
<?php endforeach; ?>
null]
}, {
componentType: 'Jsw.Panel',
id: 'panelMoreResources',
cls: 'form-box form-box-50x50 b-collapsible',
title: <?php echo $this->jsLmsg('showMoreResources'); ?>,
hideContentTitle: <?php echo $this->jsLmsg('hideMoreResources'); ?>,
collapsed: true,
items: [
<?php foreach ($this->additionalResourceLimits as $limitName => $limitDetails): ?>
{
componentType: 'Jsw.form.DisplayField',
fieldLabel: <?php echo $this->jsEscape($limitDetails['title']); ?>,
value: <?php echo $this->jsEscape($limitDetails['limitString']); ?>
},
<?php endforeach; ?>
null]
}]
})
}, {
componentType: 'Jsw.bar.Button',
title: <?php echo $this->jsLmsg('tabPermissions'); ?>,
tabId: 'tab-permissions',
content: new Jsw.layout.TwoColumns({
items: [{
componentType: 'Jsw.Panel',
cls: 'form-box form-box-50x50',
items: [{
componentType: 'Jsw.Hint',
hint: <?php echo $this->jsLmsg('permissionsSummaryHint'); ?>
},
<?php foreach ($this->mainPermissions as $permission): ?>
{
componentType: 'Jsw.form.DisplayField',
fieldLabel: <?php echo $this->jsEscape($permission->getName()); ?>,
value: <?php echo $this->jsHtml($this->switchState($permission->getValue())); ?>
},
<?php endforeach; ?>
null]
}, {
componentType: 'Jsw.Panel',
id: 'panelMorePermissions',
cls: 'form-box form-box-50x50 b-collapsible',
title: <?php echo $this->jsLmsg('showMorePermissions'); ?>,
hideContentTitle: <?php echo $this->jsLmsg('hideMorePermissions'); ?>,
collapsed: true,
items: [
<?php foreach ($this->additionalPermissions as $permission): ?>
{
componentType: 'Jsw.form.DisplayField',
fieldLabel: <?php echo $this->jsEscape($permission->getName()); ?>,
value: <?php echo $this->jsHtml($this->switchState($permission->getValue())); ?>
},
<?php endforeach; ?>
null]
}]
})
}]
});
});
//]]>
</script>

View File

@@ -1,17 +0,0 @@
<?php
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
?>
<table cellspacing="0" class="popup-data-table">
<?php foreach ($this->resourceLimits as $limitName => $limitDetails): ?>
<tr>
<th><?php echo $limitDetails['title']; ?></th>
<td>
<?php if (in_array($limitName, array('max_traffic', 'disk_space'))): ?>
<?php echo $this->partial('partials/gauge.phtml', array('limitDetails' => $limitDetails)); ?>
<?php else: ?>
<?php echo $this->escape($limitDetails['usageString']); ?>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</table>