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,36 +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('areaDescription'); ?>
});
new Jsw.List({
renderTo: 'main',
id: 'sites-list',
data: <?php echo Zend_Json::encode($this->sitesList->fetchData()); ?>,
<?php if ($this->sitesList->isSsl()): ?>
dataUrl: '/statistics/site-select-list-data/ssl/true',
<?php else: ?>
dataUrl: '/statistics/site-select-list-data',
<?php endif; ?>
columns: [{
header: <?php echo $this->sitesList->jsLmsg('domain'); ?>,
sortable: true,
dataIndex: 'displayName'
}, {
header: '',
renderer: function(item) {
return '<a href="#" onclick=\'' + item.statisticsUrl + '\'>[' + <?php echo $this->sitesList->jsLmsg('linkView'); ?> + ']</a>';
}
}]
});
});
//]]>
</script>

View File

@@ -1,32 +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('areaDescription'); ?>
});
new Jsw.List({
renderTo: 'main',
id: 'sites-list',
data: <?php echo Zend_Json::encode($this->sitesList->fetchData()); ?>,
dataUrl: '/statistics/traffic-site-select-list-data',
columns: [{
header: <?php echo $this->sitesList->jsLmsg('domain'); ?>,
sortable: true,
dataIndex: 'displayName'
}, {
header: '',
renderer: function(item) {
return '<a href="' + item.statisticsUrl + '">[' + <?php echo $this->sitesList->jsLmsg('linkView'); ?> + ']</a>';
}
}]
});
});
//]]>
</script>