Inherited Methods
Class: parserLinkInlineTag
- parserLinkInlineTag::parserLinkInlineTag()
- sets up the tag
- parserLinkInlineTag::Convert()
- calls the output conversion
- parserLinkInlineTag::ConvertPart()
- convert part of the tag
Class: parserInlineTag
- parserInlineTag::parserInlineTag()
- sets up the tag
- parserInlineTag::getString()
- always gets an empty string
- parserInlineTag::Strlen()
- get length of the tag
Class: parserBase
- parserBase::getType()
- gets the type
- parserBase::getValue()
- gets the value
- parserBase::setValue()
- sets the given value
Class Details
Represents inline links to external tutorial documentation
Tags:
- tutorial - inline {@tutorial}
- author - Gregory Beaver <[email protected]>
- version - Release: @[email protected]
- copyright - 2002-2008 Gregory Beaver
- see - parserStringWithInlineTags
- link - http://www.phpdoc.org
- link - http://pear.php.net/PhpDocumentor
- todo - CS cleanup - change classname to PhpDocumentor_*
- todo - CS cleanup - change package to PhpDocumentor
- license - LGPL
[ Top ]
Class Variables
Class Methods
parserTutorialInlineTag
parserTutorialInlineTag parserTutorialInlineTag(
string
$link, string
$text)
[line 286]
constructor
Parameters:
- string $link - stored in $value, see parserBase::$value
- string $text - see $linktext
[ Top ]
Convert
mixed Convert(
Converter
&$c)
[line 302]
convert part of the tag
Tags:
- return - returns the converted link or false if not converted successfully
- todo - CS cleanup - rename to convert for camelCase rule
Overrides parserLinkInlineTag::Convert() (calls the output conversion)
Parameters:
- Converter &$c - converter used to change the abstract link into text for display
[ Top ]