2021-05-24 18:13:23 +02:00
|
|
|
<?php
|
|
|
|
$archiveSiteHelper = $this->getHelperPluginManager()->get('archiveSiteMeta');
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
2021-10-26 12:22:55 +02:00
|
|
|
<?php
|
2021-10-29 11:21:26 +02:00
|
|
|
$collections = [];
|
2021-10-26 12:22:55 +02:00
|
|
|
foreach($sites as $site){
|
2021-10-29 11:21:26 +02:00
|
|
|
$site_data = $archiveSiteHelper->getSiteMetaValues($site);
|
2021-11-03 23:07:21 +01:00
|
|
|
$site_data['id'] = $site->id();
|
2021-10-29 11:21:26 +02:00
|
|
|
$site_data['url'] = $site->siteUrl();
|
|
|
|
$site_data['title'] = $site->title();
|
|
|
|
$site_data['summary'] = nl2br($this->escapeHtml($site->summary()));
|
|
|
|
array_push($collections, $site_data);
|
2021-10-26 12:22:55 +02:00
|
|
|
}
|
2021-10-29 11:21:26 +02:00
|
|
|
//$collections = json_encode($collections, JSON_UNESCAPED_SLASHES);
|
|
|
|
//$collections = json_encode($collections, JSON_HEX_APOS);
|
|
|
|
//$collections = htmlspecialchars(json_encode($collections), ENT_QUOTES, 'UTF-8');
|
|
|
|
//$collections = str_replace("'", "\'", $collections);
|
|
|
|
$collections = htmlentities(json_encode($collections, JSON_HEX_QUOT), ENT_QUOTES, 'UTF-8');
|
|
|
|
//$collections = json_encode($collections);
|
2021-10-26 12:22:55 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div data-vue-component="archive-list"
|
2021-11-10 14:18:27 +01:00
|
|
|
data-collections='<?= $collections ?>'
|
|
|
|
data-page_size=3>
|
2021-10-26 12:22:55 +02:00
|
|
|
</div>
|
|
|
|
|
2021-05-24 18:13:23 +02:00
|
|
|
|
2021-10-29 11:21:26 +02:00
|
|
|
|
|
|
|
<script src="/themes/archive/asset/js/archive-list.js"></script>
|