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

Source for file Url.php

Documentation is available at Url.php

  1. <?php
  2.  
  3.  
  4.     
  5.     
  6.     var $conf = array(
  7.         'target' => false,
  8.         'images' => true,
  9.         'img_ext' => array('jpg''jpeg''gif''png')
  10.     );
  11.     
  12.     /**
  13.     * 
  14.     * Renders a token into text matching the requested format.
  15.     * 
  16.     * @access public
  17.     * 
  18.     * @param array $options The "options" portion of the token (second
  19.     *  element).
  20.     * 
  21.     * @return string The text rendered from the token options.
  22.     * 
  23.     */
  24.     
  25.     function token($options)
  26.     {
  27.         // create local variables from the options array (text,
  28.         // href, type)
  29.         extract($options);
  30.  
  31.         return " $text\\footnote\{$href}";
  32.     }
  33. }
  34. ?>

Documentation generated on Mon, 11 Mar 2019 14:10:24 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.