Class: dataReflectionHighlight

Attributes:
Inherits:
Implements:

Contents:

Introduction

Attention
Attention: No description has been provided for this class.

Meta Data

Attention
Attention: There is no meta data for this class.

Constants

There are no constants defined for this class.

Properties

Methods

Also See

Attention
Attention: There are no additional references for this class.

Class Syntax

In file D:\oblib-core\php\oblib\dataReflection\dataReflection.class.php between lines 285 and 301.

<?php
 
    
class dataReflectionHighlight extends dataPrimitive implements dataNameValuePair
    
{
        
        function 
__construct ($strDocComment$strSyntax)
        {
            
parent::__construct ('Syntax');
            
$this->___setValue (
                
highlight_string (
                    
"<?php\n \n" .
                    (!empty (
$strDocComment) ? "\t" $strDocComment "\n\n" "") . 
                    
$strSyntax "\n?>"
                    
                    
TRUE
                
)
            );
        }
    }

?>