Horde_Text_Diff_Renderer::_context PHP 메소드

_context() 보호된 메소드

protected _context ( $lines )
    protected function _context($lines)
    {
        return $this->_lines($lines, '  ');
    }

Usage Example

예제 #1
0
파일: pearweb.php 프로젝트: stof/pearweb
 protected function _context($lines)
 {
     array_walk($lines, create_function('&$a,$b', '$a=htmlspecialchars($a);'));
     return "\n" . parent::_context($lines);
 }