You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

263 lines
7.7 KiB
PHTML

14 years ago
<?php
use Engelsystem\Database\DB;
/**
* @return string
*/
8 years ago
function user_news_comments_title()
{
return _('News comments');
}
/**
* @return string
*/
8 years ago
function news_title()
{
return _('News');
}
/**
* @return string
*/
8 years ago
function meetings_title()
{
return _('Meetings');
}
/**
* @return string
*/
8 years ago
function user_meetings()
{
$display_news = config('display_news');
8 years ago
$html = '<div class="col-md-12"><h1>' . meetings_title() . '</h1>' . msg();
$request = request();
8 years ago
if (preg_match('/^\d{1,}$/', $request->input('page', 0))) {
$page = $request->input('page', 0);
} else {
8 years ago
$page = 0;
}
8 years ago
$news = DB::select(sprintf('
SELECT *
FROM `News`
WHERE `Treffen`=1
ORDER BY `Datum`DESC
LIMIT %u, %u',
$page * $display_news,
$display_news
));
8 years ago
foreach ($news as $entry) {
$html .= display_news($entry);
}
8 years ago
$dis_rows = ceil(count(DB::select('SELECT `ID` FROM `News`')) / $display_news);
8 years ago
$html .= '<div class="text-center">' . '<ul class="pagination">';
8 years ago
for ($i = 0; $i < $dis_rows; $i++) {
if ($request->has('page') && $i == $request->input('page', 0)) {
8 years ago
$html .= '<li class="active">';
} elseif (!$request->has('page') && $i == 0) {
8 years ago
$html .= '<li class="active">';
} else {
$html .= '<li>';
}
$html .= '<a href="' . page_link_to('user_meetings', ['page' => $i]) . '">' . ($i + 1) . '</a></li>';
}
8 years ago
$html .= '</ul></div></div>';
8 years ago
8 years ago
return $html;
14 years ago
}
/**
* @param array $news
* @return string
*/
8 years ago
function display_news($news)
{
global $privileges, $page;
8 years ago
8 years ago
$html = '';
$html .= '<div class="panel' . ($news['Treffen'] == 1 ? ' panel-info' : ' panel-default') . '">';
$html .= '<div class="panel-heading">';
$html .= '<h3 class="panel-title">' . ($news['Treffen'] == 1 ? '[Meeting] ' : '') . ReplaceSmilies($news['Betreff']) . '</h3>';
$html .= '</div>';
$html .= '<div class="panel-body">' . ReplaceSmilies(nl2br($news['Text'])) . '</div>';
8 years ago
8 years ago
$html .= '<div class="panel-footer text-muted">';
if (in_array('admin_news', $privileges)) {
8 years ago
$html .= '<div class="pull-right">'
. button_glyph(page_link_to('admin_news', ['action' => 'edit', 'id' => $news['ID']]), 'edit', 'btn-xs')
8 years ago
. '</div>';
8 years ago
}
$html .= '<span class="glyphicon glyphicon-time"></span> ' . date('Y-m-d H:i', $news['Datum']) . '&emsp;';
8 years ago
8 years ago
$user_source = User($news['UID']);
8 years ago
8 years ago
$html .= User_Nick_render($user_source);
if ($page != 'news_comments') {
$html .= '&emsp;<a href="' . page_link_to('news_comments', ['nid' => $news['ID']]) . '">'
. '<span class="glyphicon glyphicon-comment"></span> '
. _('Comments') . ' &raquo;</a> '
. '<span class="badge">'
. count(DB::select('SELECT `ID` FROM `NewsComments` WHERE `Refid`=?', [$news['ID']]))
. '</span>';
8 years ago
}
$html .= '</div>';
$html .= '</div>';
return $html;
14 years ago
}
/**
* @return string
*/
8 years ago
function user_news_comments()
{
global $user;
8 years ago
$request = request();
8 years ago
$html = '<div class="col-md-12"><h1>' . user_news_comments_title() . '</h1>';
8 years ago
if (
$request->has('nid')
&& preg_match('/^\d{1,}$/', $request->input('nid'))
&& count(DB::select('SELECT `ID` FROM `News` WHERE `ID`=? LIMIT 1', [$request->input('nid')])) > 0
8 years ago
) {
$nid = $request->input('nid');
$news = DB::select('SELECT * FROM `News` WHERE `ID`=? LIMIT 1', [$nid]);
$news = array_shift($news);
if ($request->has('text')) {
$text = preg_replace("/([^\p{L}\p{P}\p{Z}\p{N}\n]{1,})/ui", '', strip_tags($request->input('text')));
DB::insert('
INSERT INTO `NewsComments` (`Refid`, `Datum`, `Text`, `UID`)
VALUES (?, ?, ?, ?)
',
[
$nid,
date('Y-m-d H:i:s'),
$text,
$user["UID"],
]
);
engelsystem_log('Created news_comment: ' . $text);
$html .= success(_('Entry saved.'), true);
8 years ago
}
8 years ago
8 years ago
$html .= display_news($news);
8 years ago
$comments = DB::select(
'SELECT * FROM `NewsComments` WHERE `Refid`=? ORDER BY \'ID\'',
[$nid]
);
8 years ago
foreach ($comments as $comment) {
$user_source = User($comment['UID']);
8 years ago
8 years ago
$html .= '<div class="panel panel-default">';
$html .= '<div class="panel-body">' . nl2br(htmlspecialchars($comment['Text'])) . '</div>';
8 years ago
$html .= '<div class="panel-footer text-muted">';
$html .= '<span class="glyphicon glyphicon-time"></span> ' . $comment['Datum'] . '&emsp;';
$html .= User_Nick_render($user_source);
$html .= '</div>';
$html .= '</div>';
}
8 years ago
$html .= '<hr /><h2>' . _('New Comment:') . '</h2>';
8 years ago
$html .= form([
form_textarea('text', _('Message'), ''),
form_submit('submit', _('Save'))
], page_link_to('news_comments', ['nid' => $news['ID']]));
8 years ago
} else {
$html .= _('Invalid request.');
8 years ago
}
8 years ago
8 years ago
return $html . '</div>';
14 years ago
}
14 years ago
/**
* @return string
*/
8 years ago
function user_news()
{
global $privileges, $user;
$display_news = config('display_news');
$request = request();
8 years ago
8 years ago
$html = '<div class="col-md-12"><h1>' . news_title() . '</h1>' . msg();
8 years ago
$isMeeting = $request->postData('treffen');
if ($request->has('text') && $request->has('betreff') && in_array('admin_news', $privileges)) {
if (!$request->has('treffen')) {
$isMeeting = 0;
8 years ago
}
$text = $request->postData('text');
if (!in_array('admin_news_html', $privileges)) {
$text = strip_tags($text);
}
DB::insert('
INSERT INTO `News` (`Datum`, `Betreff`, `Text`, `UID`, `Treffen`)
VALUES (?, ?, ?, ?, ?)
',
[
time(),
strip_tags($request->postData('betreff')),
$text,
$user['UID'],
$isMeeting,
]
);
engelsystem_log('Created news: ' . $request->postData('betreff') . ', treffen: ' . $isMeeting);
success(_('Entry saved.'));
8 years ago
redirect(page_link_to('news'));
}
8 years ago
if (preg_match('/^\d{1,}$/', $request->input('page', 0))) {
$page = $request->input('page', 0);
8 years ago
} else {
$page = 0;
}
8 years ago
$news = DB::select(sprintf('
SELECT *
FROM `News`
ORDER BY `Datum`
DESC LIMIT %u, %u
',
$page * $display_news,
$display_news
));
8 years ago
foreach ($news as $entry) {
$html .= display_news($entry);
}
8 years ago
$dis_rows = ceil(count(DB::select('SELECT `ID` FROM `News`')) / $display_news);
8 years ago
$html .= '<div class="text-center">' . '<ul class="pagination">';
8 years ago
for ($i = 0; $i < $dis_rows; $i++) {
if ($request->has('page') && $i == $request->input('page', 0)) {
8 years ago
$html .= '<li class="active">';
} elseif (!$request->has('page') && $i == 0) {
8 years ago
$html .= '<li class="active">';
} else {
$html .= '<li>';
}
$html .= '<a href="' . page_link_to('news', ['page' => $i]) . '">' . ($i + 1) . '</a></li>';
}
8 years ago
$html .= '</ul></div>';
8 years ago
if (in_array('admin_news', $privileges)) {
8 years ago
$html .= '<hr />';
$html .= '<h2>' . _('Create news:') . '</h2>';
8 years ago
8 years ago
$html .= form([
form_text('betreff', _('Subject'), ''),
form_textarea('text', _('Message'), ''),
form_checkbox('treffen', _('Meeting'), false, 1),
form_submit('submit', _('Save'))
8 years ago
]);
8 years ago
}
return $html . '</div>';
14 years ago
}