mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
Noticeboard on dashboard
This commit is contained in:
parent
de84ca6f75
commit
07fc56b80b
@ -61,10 +61,24 @@ function mod_confirm($request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mod_dashboard() {
|
function mod_dashboard() {
|
||||||
|
global $config;
|
||||||
|
|
||||||
$args = array();
|
$args = array();
|
||||||
|
|
||||||
$args['boards'] = listBoards();
|
$args['boards'] = listBoards();
|
||||||
|
|
||||||
|
if(hasPermission($config['mod']['noticeboard'])) {
|
||||||
|
if(!$config['cache']['enabled'] || !$args['noticeboard'] = cache::get('noticeboard_preview')) {
|
||||||
|
$query = prepare("SELECT `noticeboard`.*, `username` FROM `noticeboard` LEFT JOIN `mods` ON `mods`.`id` = `mod` ORDER BY `id` DESC LIMIT :limit");
|
||||||
|
$query->bindValue(':limit', $config['mod']['noticeboard_dashboard'], PDO::PARAM_INT);
|
||||||
|
$query->execute() or error(db_error($query));
|
||||||
|
$args['noticeboard'] = $query->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
|
if($config['cache']['enabled'])
|
||||||
|
cache::set('noticeboard_preview', $args['noticeboard']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mod_page('Dashboard', 'mod/dashboard.html', $args);
|
mod_page('Dashboard', 'mod/dashboard.html', $args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Boards</legend>
|
<legend>{% trans 'Boards' %}</legend>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for board in boards %}
|
{% for board in boards %}
|
||||||
@ -12,79 +12,108 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.manageboards) %}
|
{% if mod|hasPermission(config.mod.manageboards) %}
|
||||||
<a href="?/manage/{{ board.uri }}"><small>[manage]</small></a>
|
<a href="?/manage/{{ board.uri }}"><small>[{% trans 'manage' %}]</small></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.newboard) %}
|
{% if mod|hasPermission(config.mod.newboard) %}
|
||||||
<li style="margin-top:15px"><a href="?/new_board"><strong>Create new board</strong></a></li>
|
<li style="margin-top:15px"><a href="?/new_board"><strong>{% trans 'Create new board' %}</strong></a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.noticeboard) %}
|
{% if mod|hasPermission(config.mod.noticeboard) %}
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Noticeboard</legend>
|
<legend>{% trans 'Noticeboard' %}</legend>
|
||||||
|
<ul>
|
||||||
{# TODO #}
|
{% if noticeboard %}
|
||||||
|
<li>
|
||||||
|
{% trans 'Latest posts:' %}
|
||||||
|
<ul>
|
||||||
|
{% for post in noticeboard %}
|
||||||
|
<li>
|
||||||
|
<a href="?/noticeboard#{{ post.id }}">
|
||||||
|
{% if post.subject %}
|
||||||
|
{{ post.subject|e }}
|
||||||
|
{% else %}
|
||||||
|
<em>{% trans 'no subject' %}</em>
|
||||||
|
{% endif %}
|
||||||
|
</a>
|
||||||
|
<small class="unimportant">
|
||||||
|
— by
|
||||||
|
{% if post.username %}
|
||||||
|
{{ post.username }}
|
||||||
|
{% else %}
|
||||||
|
<em>deleted?</em>
|
||||||
|
{% endif %}
|
||||||
|
at
|
||||||
|
{{ notice.time|date(config.post_date) }}
|
||||||
|
</small>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
<li><a href="?/noticeboard">{% trans 'View all entries' %}</a></li>
|
||||||
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Administration</legend>
|
<legend>{% trans 'Administration' %}</legend>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% if mod|hasPermission(config.mod.reports) %}
|
{% if mod|hasPermission(config.mod.reports) %}
|
||||||
<li><a href="?/reports">Report queue</a></li>
|
<li><a href="?/reports">{% trans 'Report queue' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.view_banlist) %}
|
{% if mod|hasPermission(config.mod.view_banlist) %}
|
||||||
<li><a href="?/bans">Ban list</a></li>
|
<li><a href="?/bans">{% trans 'Ban list' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.manageusers) %}
|
{% if mod|hasPermission(config.mod.manageusers) %}
|
||||||
<li><a href="?/users">Manage users</a></li>
|
<li><a href="?/users">{% trans 'Manage users' %}</a></li>
|
||||||
{% elseif mod|hasPermission(config.mod.change_password) %}
|
{% elseif mod|hasPermission(config.mod.change_password) %}
|
||||||
<li><a href="?/users/{{ mod.id }}">Change password</a></li>
|
<li><a href="?/users/{{ mod.id }}">{% trans 'Change password' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.modlog) %}
|
{% if mod|hasPermission(config.mod.modlog) %}
|
||||||
<li><a href="?/log">Moderation log</a></li>
|
<li><a href="?/log">{% trans 'Moderation log' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.rebuild) %}
|
{% if mod|hasPermission(config.mod.rebuild) %}
|
||||||
<li><a href="?/rebuild">Rebuild</a></li>
|
<li><a href="?/rebuild">{% trans 'Rebuild' %}</a></li>
|
||||||
{% if config.cache.enabled %}
|
{% if config.cache.enabled %}
|
||||||
<li><a href="?/flushcache">Clear cache</a></li>
|
<li><a href="?/flushcache">{% trans 'Clear cache' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.show_config) %}
|
{% if mod|hasPermission(config.mod.show_config) %}
|
||||||
<li><a href="?/config">Configuration</a></li>
|
<li><a href="?/config">{% trans 'Configuration' %}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
{% if mod|hasPermission(config.mod.themes) %}
|
{% if mod|hasPermission(config.mod.themes) %}
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Themes</legend>
|
<legend>{% trans 'Themes' %}</legend>
|
||||||
|
|
||||||
{# TODO #}
|
{# TODO #}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Search</legend>
|
<legend>{% trans 'Search' %}</legend>
|
||||||
|
|
||||||
{# TODO #}
|
{# TODO #}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
{% if config.debug %}
|
{% if config.debug %}
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Debug</legend>
|
<legend>{% trans 'Debug' %}</legend>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="?/debug/antispam">Anti-spam</a></li>
|
<li><a href="?/debug/antispam">{% trans 'Anti-spam' %}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user