<?php

/**
 * @author     Stefan Jahn
 * @copyright  Copyright (C) 2005 Stefan Jahn
 * @link       http://www.stefanjahn.de
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @version    20060731
 * 
 * Datei		syntax.php
 * Erstellt am 20.12.2005
 *
 * Plugin für DokuWiki. Erstellt aus den Bildern eines Namensraums eine
 * Galerie. Auf Wunsch werden die Thumbnails permanent abgespeichert.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');

class syntax_plugin_dwgallery extends DokuWiki_Syntax_Plugin {

	function getInfo(){
        return array(
            'author' => 'Stefan Jahn',
            'email'  => 'mail@stefanjahn.de',
            'date'   => '2006-07-31',
            'name'   => 'DWGallery Plugin',
            'desc'   => 'Creates gallery with thumbnails.',
            'url'    => 'http://stefanjahn.de/entwicklung:php:dokuwiki:gallery',
        );
    }

	function getType(){
        return 'substition';
    }

    function getPType(){
        return 'block';
    }

    function getSort(){
        return 0;
    }

    function connectTo($mode) {
    }

    function handle($match, $state, $pos, &$handler) {
    }

    function render($mode, &$renderer, $data) {
    }

}

?>
