0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
pear
/
Text
/
Wiki
/
Render
/
Tiki
/
[
Home
]
File: Image.php
<?php class Text_Wiki_Render_Tiki_Image extends Text_Wiki_Render { /** * Defines rule specific configuration * * @var array */ var $conf = array( 'prefix' => 'img/wiki_up/' // path to the wiki image directory ); /** * * Renders a token into text matching the requested format. * * @access public * * @param array $options The "options" portion of the token (second * element). * * @return string The text rendered from the token options. * */ function token($options) { $img = '{img src="'; if (!empty($this->conf['prefix'])) $img .= $this->conf['prefix']; $img .= $options['src'] . '"'; if (is_array($options['attr'])) { foreach ($options['attr'] as $var => $val) { $img .= ' '.$var.'="'.$val.'"'; } } $img .= '}'; return $img; } } ?>