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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<?php
use Bitweaver\KernelTools;
// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
foreach( $gBitSystem->mPackages as $pkg => $pkgInfo ) {
if( is_file( $pkgInfo['path'].$pkg.'_rss.php' ) ) {
$formRSSFeeds["{$pkg}_rss"] = [
'label' => $pkg,
];
}
}
$gBitSmarty->assign( "formRSSFeeds", $formRSSFeeds );
$formRSSSettings = [
'rssfeed_language' => [
'label' => 'Language',
],
'rssfeed_creator' => [
'label' => 'Creator',
],
'rssfeed_editor' => [
'label' => 'Editor',
'note' => 'Email address for person responsible for editorial content. For RDF 2.0',
],
'rssfeed_webmaster' => [
'label' => 'Webmaster',
'note' => 'Email address for person responsible for technical issues relating to channel. For RDF 2.0',
],
'rssfeed_image_url' => [
'label' => 'Image URL',
'note' => 'Enter the full URL to an image that you want to associate with your RSS channels',
],
'rssfeed_css_url' => [
'label' => 'CSS File URL',
'note' => 'Enter the full URL to a CSS file you want to use to style your RSS Feeds.',
],
'rssfeed_truncate' => [
'label' => 'Truncate RSS feed',
'note' => 'Enter the number of characters you want to feed per item in the rss feeds. Default is 5000 characters.',
],
];
$gBitSmarty->assign( "formRSSSettings", $formRSSSettings );
$formRSSOptions = [
'rssfeed_httpauth' => [
'label' => 'Enable HTTP Authentication',
'note' => 'Use HTTP Authentication with SSL to enable Registered Users to gain access to Private Content Feeds.',
],
];
$gBitSmarty->assign( "formRSSOptions", $formRSSOptions );
$cacheTimes = [
0 => KernelTools::tra( "(no cache)" ),
60 => "1 " . KernelTools::tra( "minute" ),
300 => "5 " . KernelTools::tra( "minutes" ),
600 => "10 " . KernelTools::tra( "minutes" ),
1800 => "30 " . KernelTools::tra( "minutes" ),
3600 => "1 " . KernelTools::tra( "hour" ),
7200 => "2 " . KernelTools::tra( "hours" ),
14400 => "4 " . KernelTools::tra( "hours" ),
];
$gBitSmarty->assign( "cacheTimes", $cacheTimes );
$feedTypes = [
0 => "RSS 0.91",
1 => "RSS 1.0",
2 => "RSS 2.0",
3 => "PIE 0.1",
4 => "MBOX",
5 => "ATOM",
6 => "ATOM 0.3",
7 => "OPML",
8 => "HTML",
9 => "JS",
];
$gBitSmarty->assign( "feedTypes", $feedTypes );
if( !empty( $_REQUEST['feed_settings'] ) ) {
// save package specific RSS feed settings
foreach( array_keys( $formRSSFeeds ) as $item ) {
$package = preg_replace( "/^rss_/", "", $item );
simple_set_toggle( $item, $package );
simple_set_int( "{$item}_max_records", $package );
simple_set_value( "{$item}_title", $package );
simple_set_value( "{$item}_description", $package );
}
// deal with the RSS settings
foreach( array_keys( $formRSSSettings ) as $item ) {
simple_set_value( $item, RSS_PKG_NAME );
}
simple_set_value( 'rssfeed_default_version' );
simple_set_int( 'rssfeed_cache_time' );
foreach( $formRSSOptions as $item => $data ) {
simple_set_toggle( $item, RSS_PKG_NAME );
}
}
|