Text_Wiki_Tiki
[ class tree: Text_Wiki_Tiki ] [ index: Text_Wiki_Tiki ] [ all elements ]

Source for file Url.php

Documentation is available at Url.php

  1. <?php
  2.  
  3.  
  4. class Text_Wiki_Render_Tiki_Url extends Text_Wiki_Render {
  5.  
  6.     /**
  7.     *
  8.     * Renders a token into text matching the requested format.
  9.     *
  10.     * @access public
  11.     *
  12.     * @param array $options The "options" portion of the token (second
  13.     *  element).
  14.     *
  15.     * @return string The text rendered from the token options.
  16.     *
  17.     */
  18.  
  19.     function token($options)
  20.     {
  21.         if ($options['type'== 'start'{
  22.             if (strlen($options['text']|| $options['href'== $options['text']{
  23.                 return '['.$options['href'];
  24.             else {
  25.                 return '['.$options['href'].'|';
  26.             }
  27.         }
  28.         else if ($options['type'== 'end'{
  29.             return ']';
  30.         }
  31.         else {
  32.             if (strlen($options['text']|| $options['href'== $options['text']{
  33.                 return '['.$options['href'].']';
  34.             else {
  35.                 return '['.$options['href'].'|'.$options['text'].']';
  36.             }
  37.         }
  38.     }
  39. }
  40. ?>

Documentation generated on Mon, 11 Mar 2019 15:32:45 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.