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/random_image/main.php

36 lines
911 B
PHP
Raw Normal View History

<?php
/**
* Name: Random Image
* Author: Shish <webmaster@shishnet.org>
* License: GPLv2
* Description: Do things with a random image
*/
class RandomImage extends Extension {
public function receive_event($event) {
if(is_a($event, 'PageRequestEvent') && ($event->page_name == "random_image")) {
global $database;
if($event->count_args() == 1) {
$action = $event->get_arg(0);
$search_terms = array();
}
else if($event->count_args() == 2) {
$action = $event->get_arg(0);
$search_terms = explode(' ', $event->get_arg(1));
}
$image = $database->get_random_image($search_terms);
if($event->get_arg(0) == "download") {
if(!is_null($image)) {
$event->page->set_mode("data");
$event->page->set_type("image/jpeg");
$event->page->set_data(file_get_contents($image->get_image_filename()));
}
}
}
}
}
add_event_listener(new RandomImage());
?>