blob: 74f2c47034a618bcd1eb5bbd885e17acc4ebfad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
/**
* @package stock
* @subpackage functions
*/
require_once '../kernel/includes/setup_inc.php';
use Bitweaver\Stock\StockAssembly;
use Bitweaver\Stock\StockComponent;
$gBitSystem->verifyPackage( 'stock' );
$gSiteMapHash = [];
$gallery = new StockAssembly();
$listHash = [ 'max_records' => -1, 'no_thumbnails' => true ];
if( $galleries = $gallery->getList( $listHash ) ) {
foreach( $galleries as $row ) {
$url = StockAssembly::getDisplayUrlFromHash( $row );
if( empty( $url ) ) continue;
$gSiteMapHash['g'.$row['content_id']] = [
'loc' => BIT_BASE_URI . $url,
'lastmod' => date( 'Y-m-d', $row['last_modified'] ),
'changefreq' => 'monthly',
'priority' => 0.6,
];
}
}
$component = new StockComponent();
$listHash = [ 'max_records' => -1, 'no_thumbnails' => true ];
if( $components = $component->getList( $listHash ) ) {
foreach( $components as $row ) {
$url = StockComponent::getDisplayUrlFromHash( $row );
if( empty( $url ) ) continue;
$gSiteMapHash['i'.$row['content_id']] = [
'loc' => BIT_BASE_URI . $url,
'lastmod' => date( 'Y-m-d', $row['last_modified'] ),
'changefreq' => 'monthly',
'priority' => 0.5,
];
}
}
$gBitSmarty->assign( 'gSiteMapHash', $gSiteMapHash );
$gBitThemes->setFormatHeader( 'xml' );
header( 'Content-Type: application/xml; charset=utf-8' );
$gBitSystem->display( 'bitpackage:kernel/sitemap.tpl' );
|