36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Featured Image
|
||
|
* Author: Shish <webmaster@shishnet.org>
|
||
|
* Link: http://code.shishnet.org/shimmie2/
|
||
|
* License: GPLv2
|
||
|
* Description: Bring a specific image to the users' attentions
|
||
|
* Documentation:
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
class FeaturedInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "featured";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Featured Image";
|
||
|
public $url = self::SHIMMIE_URL;
|
||
|
public $authors = self::SHISH_AUTHOR;
|
||
|
public $license = self::LICENSE_GPLV2;
|
||
|
public $description = "Bring a specific image to the users' attentions";
|
||
|
public $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.
|
||
|
<p><b>Viewing a featured image</b>
|
||
|
<br>Visit <code>/featured_image/view</code>
|
||
|
<p><b>Downloading a featured image</b>
|
||
|
<br>Link to <code>/featured_image/download</code>. This will give
|
||
|
the raw data for an image (no HTML). This is useful so that you
|
||
|
can set your desktop wallpaper to be the download URL, refreshed
|
||
|
every couple of hours.";
|
||
|
}
|