Source for file Image.php
Documentation is available at Image.php
// $Id: Image.php,v 1.2 2004/09/25 19:05:13 pmjones Exp $
* This class implements a Text_Wiki_Parse to embed the contents of a URL
* inside the page. Typically used to get script output.
* This rule is inherently not secure; it allows cross-site scripting to
* occur if the embedded output has <script> or other similar tags. Be
* In the future, we'll add a rule config options to set the base embed
* path so that it is limited to one directory.
* @author Paul M. Jones <pmjones@ciaweb.net>
* The regular expression used to find source text matching this
var $regex = '/(\[\[image )(.+?)(\]\])/i';
* Generates a token entry for the matched text. Token options are:
* 'src' => The image source, typically a relative path name.
* 'opts' => Any macro options following the source.
* @param array &$matches The array of matches from parse().
* @return A delimited token number to be used as a placeholder in
$pos = strpos($matches[2 ], ' ');
// everything after the space is attribute arguments
'src' => substr($matches[2 ], 0 , $pos),
return $this->wiki->addToken ($this->rule, $options);
Documentation generated on Mon, 11 Mar 2019 14:22:32 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|