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
|
<?php
// $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.
$formCmsSettings = array(
/*
Feature is incomplete
'articles_rankings' => array(
'label' => 'Rankings',
'note' => 'Activates statistics for article ranking features.',
),
*/
'articles_attachments' => array(
'label' => 'File Attachments',
'note' => 'Allow the attachment of files to an article. This feature is required if you want to have individual article images.',
),
/* 'articles_content_attachments' => array(
'label' => 'Content Attachments',
'note' => 'Allow the attachment of content to an article.',
),
*/
'articles_display_filter_bar' => array(
'label' => 'Articles Filter',
'note' => 'Allows admins to quickly filter articles based on status, topic and type.',
),
'articles_submissions_rnd_img' => array(
'label' => 'Prevent Spam',
'note' => 'This will generate a random number as an image which the user has to confirm.',
),
'articles_auto_approve' => array(
'label' => 'Auto Approve Articles',
'note' => 'Allow User ratings to Auto Approve Articles',
),
);
$gBitSmarty->assign( 'formCmsSettings',$formCmsSettings );
$articleDateThreshold = array(
'' => tra( 'never' ),
'always' => tra( 'always' ),
'year' => tra( 'up to a year' ),
'month' => tra( 'up to a month' ),
'week' => tra( 'up to a week' ),
'day' => tra( 'up to a day' ),
'hour' => tra( 'up to an hour' ),
);
$gBitSmarty->assign( 'articleDateThreshold', $articleDateThreshold );
$formArticleListing = array(
"articles_list_title" => array(
'label' => 'Title',
'note' => 'List the title of the article.',
),
"articles_list_type" => array(
'label' => 'Type',
'note' => 'Display what type of article it is.',
),
"articles_list_topic" => array(
'label' => 'Topic',
'note' => 'Display the article topic.',
),
"articles_list_date" => array(
'label' => 'Creation Date',
'note' => 'Display when the article was submitted first.',
),
"articles_list_expire" => array(
'label' => 'Expiration Date',
'note' => 'Display when the article will expire.',
),
"articles_list_author" => array(
'label' => 'Author',
'note' => 'Display the name of the author of an article.',
),
"articles_list_reads" => array(
'label' => 'Hits',
'note' => 'Display the number of times a given article has been accessed.',
),
"articles_list_size" => array(
'label' => 'Size',
'note' => 'Display the size of any given article.',
),
"articles_list_img" => array(
'label' => 'Image',
'note' => 'Display the image that is associated with a given article.',
),
"articles_list_status" => array(
'label' => 'Status',
'note' => 'This will indicate whether a given article has been submitted or has been approved.',
),
);
$gBitSmarty->assign( 'formArticleListing', $formArticleListing );
$gBitSmarty->assign( 'imageSizes', get_image_size_options( FALSE ));
if( !empty( $_REQUEST['store_settings'] )) {
$featureToggles = array_merge( $formArticleListing,$formCmsSettings );
foreach( $featureToggles as $item => $data ) {
simple_set_toggle( $item, ARTICLES_PKG_NAME );
}
simple_set_int( "articles_max_list", ARTICLES_PKG_NAME );
simple_set_int( "articles_description_length", ARTICLES_PKG_NAME );
simple_set_value( "articles_image_size", ARTICLES_PKG_NAME );
}
|