public
Description: With the Image Resize plugin enabled, you can easily create thumbnails of your images with the Frog CMS
Homepage: http://www.naehrstoff.ch/code/image-resize-for-frog
Clone URL: git://github.com/naehrstoff/image_resize.git
image_resize / ImageResizeController.php
100644 24 lines (13 sloc) 0.424 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
 
require_once("ImageResize.php");
 
class ImageResizeController extends PluginController {
 
    public function __construct() {
        $this->setLayout('backend');
    }
    
    public function documentation() {
        $this->display('image_resize/views/documentation', array(
          'gd_status' => ImageResize::gd_available(),
          'mod_rewrite_status' => USE_MOD_REWRITE
        ));
    }
}