0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
pear
/
Text
/
Wiki
/
Render
/
Tiki
/
[
Home
]
File: Wikilink.php
<?php class Text_Wiki_Render_Tiki_Wikilink extends Text_Wiki_Render { /** * * Renders a token into XHTML. * * @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) { if (isset($options['type'])) { if ($options['type'] == 'start') { return '(('.$options['page']. (strlen($options['anchor']) ? '#'.$options['anchor'] : ''). (strlen($options['text']) /*&& $options['page'] != $options['text']*/ ? '|' : ''); } else { return '))'; } } else { return '(('.$options['page']. (strlen($options['anchor']) ? '#'.$options['anchor'] : ''). (strlen($options['text']) && $options['page'] != $options['text'] ? '|' . $options['text'] : ''). '))'; } } } ?>