0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_banner.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } function wikiplugin_banner_help() { return tra("Insert a banner").":<br />~np~{BANNER(zone=zone, target=target) /}~/np~"; } function wikiplugin_banner_info() { return array( 'name' => tra('Banner'), 'documentation' => 'PluginBanner', 'description' => tra('Insert a banner'), 'prefs' => array('wikiplugin_banner'), 'params' => array( 'zone' => array( 'required' => true, 'name' => tra('Zone'), 'description' => tra('Zone'), ), 'target' => array( 'required' => false, 'name' => tra('Target'), 'description' => '_blank|display'), ) ); } function wikiplugin_banner($data, $params) { global $tikilib; global $bannerlib;include_once('lib/banners/bannerlib.php'); extract($params); if (empty($zone)) { return tra('missing parameter'); } if (empty($target)) { $banner = $bannerlib->select_banner($zone); } else { $banner = $bannerlib->select_banner($zone, $target); } return '~np~'.$banner.'~/np~'; } ?>