0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_flash.php
<?php // $Id: /cvsroot/tikiwiki/tiki/lib/wiki-plugins/wikiplugin_flash.php,v 1.8.2.1 2007-11-29 00:25:57 xavidp Exp $ // Wiki plugin to display a SWF file // damian aka damosoft 30 March 2004 function wikiplugin_flash_help() { return tra("Displays a SWF on the wiki page").":<br />~np~{FLASH(movie=\"url_to_flash\",width=>xx,height=>xx,quality=>high)}{FLASH}~/np~"; } function wikiplugin_flash_info() { return array( 'name' => tra('Flash video'), 'documentation' => 'PluginFlash', 'description' => tra('Displays a SWF on the wiki page'), 'prefs' => array('wikiplugin_flash'), 'extraparams' => true, 'params' => array( 'movie' => array( 'required' => true, 'name' => tra('Movie URL'), 'description' => tra('Complete URL to the movie to include.'), ), 'width' => array( 'required' => false, 'name' => tra('Width'), 'description' => tra('Default width: 425'), ), 'height' => array( 'required' => false, 'name' => tra('Height'), 'description' => tra('Default height: 350'), ), 'quality' => array( 'required' => false, 'name' => tra('Quality'), 'description' => tra('Flash video quality. Default value: high'), ), ), ); } function wikiplugin_flash($data, $params) { global $tikilib; $code = $tikilib->embed_flash($params); if ( $code === false ) { return tra('Missing parameter movie to the plugin flash'); } return "~np~$code~/np~"; } ?>
© 2017 -
ZeroByte.ID
.