<?php
/**
 * JAlbum Action Plugin:   Register JAlbum to the toolbar
 * 
 * @author     Jürgen A.Lamers <jaloma.ac@googlemail.com>
 */

if(!defined('DOKU_INC')) die();
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'action.php');

class action_plugin_bahnde extends DokuWiki_Action_Plugin {

  /**
   * return some info
   */
  function getInfo(){
    return array(
      'author' => 'Jürgen A.Lamers',
      'email'  => 'jaloma.ac@googlemail.com',
      'date'   => '2009-01-14',
      'name'   => 'BahnDe (toolbar action plugin component)',
      'desc'   => 'BahnDe toolbar action functions.',
      'url'    => 'http://www.dokuwiki.org/plugin:bahnde',
    );
  }

  function register(&$controller) {
    $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insert_button', array ());
  }

/**
 * Inserts a toolbar button
 */
function insert_button(& $event, $param) {
    $event->data[] = array (
        'type' => 'format',
        'title' => $this->getLang('bahnde'),
        'icon' => '../../plugins/bahnde/bahnde.png',
		'open' =>'<bahnde '.
  			'start_station=\'\' '.
		  	'end_station=\'\' '.
		  	'start_date=\'\' '.
		  	'start_time=\'\' '.
		  	'allow_toggle_station=\'false\' '.
		  	'departure=\'off\' '.
			'/>',
        'close' => '',
    );
}
} // class