-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.php
146 lines (117 loc) · 2.99 KB
/
blogs.php
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
/**
* blogs
*
* @package Sngine
* @author Zamblek
*/
// fetch bootloader
require('bootloader.php');
// blogs enabled
if(!$system['blogs_enabled']) {
_error(404);
}
// user access
if(!$system['system_public']) {
user_access();
}
try {
// get view content
switch ($_GET['view']) {
case '':
// page header
page_header(__("Blogs"));
// get articles
$articles = $user->get_articles();
/* assign variables */
$smarty->assign('articles', $articles);
break;
case 'category':
// page header
page_header(__("Blogs"));
// get articles
$articles = $user->get_articles(array("category" => $_GET['category_id']));
/* assign variables */
$smarty->assign('category_id', $_GET['category_id']);
$smarty->assign('articles', $articles);
// get latest articles
$latest_articles = $user->get_articles( array('random' => "true", 'results' => 5) );
/* assign variables */
$smarty->assign('latest_articles', $latest_articles);
// get ads
$ads = $user->ads('article');
/* assign variables */
$smarty->assign('ads', $ads);
// get widgets
$widgets = $user->widgets('article');
/* assign variables */
$smarty->assign('widgets', $widgets);
break;
case 'article':
// get article
$article = $user->get_post($_GET['post_id']);
if(!$article) {
_error(404);
}
/* assign variables */
$smarty->assign('article', $article);
// page header
page_header($article['og_title'], $article['og_description'], $article['og_image']);
// get latest articles
$latest_articles = $user->get_articles( array('random' => "true", 'results' => 5) );
/* assign variables */
$smarty->assign('latest_articles', $latest_articles);
// update views counter
$user->update_article_views($article['article']['article_id']);
// get ads
$ads = $user->ads('article');
/* assign variables */
$smarty->assign('ads', $ads);
// get widgets
$widgets = $user->widgets('article');
/* assign variables */
$smarty->assign('widgets', $widgets);
break;
case 'edit':
// user access
user_access();
// check blogs permission
if(!$user->_data['can_write_articles']) {
_error(404);
}
// page header
page_header(__("Edit Article"));
// get article
$article = $user->get_post($_GET['post_id']);
if(!$article) {
_error(404);
}
/* assign variables */
$smarty->assign('article', $article);
break;
case 'new':
// user access
user_access();
// check blogs permission
if(!$user->_data['can_write_articles']) {
_error(404);
}
// page header
page_header(__("Write New Article"));
break;
default:
_error(404);
break;
}
/* assign variables */
$smarty->assign('view', $_GET['view']);
// get blogs categories
$blogs_categories = $user->get_blogs_categories();
/* assign variables */
$smarty->assign('blogs_categories', $blogs_categories);
} catch (Exception $e) {
_error(__("Error"), $e->getMessage());
}
// page footer
page_footer("blogs");
?>