This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/featured/main.php

57 lines
1.5 KiB
PHP

<?php
/*
* Name: Featured Image
* Author: Shish <webmaster@shishnet.org>
* License: GPLv2
* Description: Bring a specific image to the users' attentions
* Documentation:
* Once enabled, a new "feature this" button will appear next
* to the other image control buttons (delete, rotate, etc).
* Clicking it will set the image as the site's current feature,
* which will be shown in the side bar of the post list.
*/
class Featured extends SimpleExtension {
public function onInitExt($event) {
global $config;
$config->set_default_int('featured_id', 0);
}
public function onPageRequest($event) {
global $config, $page, $user;
if($event->page_matches("set_feature")) {
if($user->is_admin() && isset($_POST['image_id'])) {
$id = int_escape($_POST['image_id']);
if($id > 0) {
$config->set_int("featured_id", $id);
$page->set_mode("redirect");
$page->set_redirect(make_link("post/view/$id"));
}
}
}
}
public function onPostListBuilding($event) {
global $config, $page, $user;
$fid = $config->get_int("featured_id");
if($fid > 0) {
$image = Image::by_id($fid);
if(!is_null($image)) {
if(class_exists("Ratings")) {
if(strpos(Ratings::get_user_privs($user), $image->rating) === FALSE) {
return;
}
}
$this->theme->display_featured($page, $image);
}
}
}
public function onImageAdminBlockBuilding($event) {
global $user;
if($user->is_admin()) {
$event->add_part($this->theme->get_buttons_html($event->image->id));
}
}
}
?>