# tracking-code-manager/2.3.0/includes/classes/html/NewLineText.php

Tracking Code Manager, version 2.3.0. 19 lines.

- Page: https://pluginprobe.com/plugins/tracking-code-manager/2.3.0/code/includes/classes/html/NewLineText.php
- Raw: https://pluginprobe.com/plugins/tracking-code-manager/2.3.0/raw/includes/classes/html/NewLineText.php
- Modified: 2024-07-03T20:42:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tracking-code-manager/2.3.0/code/includes/classes/html/NewLineText.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) exit;

class IRP_NewLineText extends IRP_TextContent {

    public function __construct() {
        parent::__construct();
    }
    public function hasTagContent() {
        return FALSE;
    }
    public function append($text) {
        $this->body.=$text;
    }
    public function write(IRP_HTMLContext $context) {
        $context->write($this->body);
    }
}

```
