[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Concrete comment token class. Generally will be ignored. 5 */ 6 class HTMLPurifier_Token_Comment extends HTMLPurifier_Token 7 { 8 public $data; /**< Character data within comment. */ 9 public $is_whitespace = true; 10 /** 11 * Transparent constructor. 12 * 13 * @param $data String comment data. 14 */ 15 public function __construct($data, $line = null, $col = null) { 16 $this->data = $data; 17 $this->line = $line; 18 $this->col = $col; 19 } 20 } 21 22 // vim: et sw=4 sts=4
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |