PHP 8.1.33
Preview: RawDocument.php Size: 1.06 KB
/home/jambtst2015/9jahookups.com/libraries/src/Document/RawDocument.php

<?php
/**
 * Joomla! Content Management System
 *
 * @copyright  (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Document;

\defined('JPATH_PLATFORM') or die;

/**
 * RawDocument class, provides an easy interface to parse and display raw output
 *
 * @since  1.7.0
 */
class RawDocument extends Document
{
	/**
	 * Class constructor
	 *
	 * @param   array  $options  Associative array of options
	 *
	 * @since   1.7.0
	 */
	public function __construct($options = array())
	{
		parent::__construct($options);

		// Set mime type
		$this->_mime = 'text/html';

		// Set document type
		$this->_type = 'raw';
	}

	/**
	 * Render the document.
	 *
	 * @param   boolean  $cache   If true, cache the output
	 * @param   array    $params  Associative array of attributes
	 *
	 * @return  string  The rendered data
	 *
	 * @since   1.7.0
	 */
	public function render($cache = false, $params = array())
	{
		parent::render($cache, $params);

		return $this->getBuffer();
	}
}

Directory Contents

Dirs: 3 × Files: 16

Name Size Perms Modified Actions
Feed DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
Renderer DIR
- drwxr-xr-x 2021-08-23 19:07:08
Edit Download
24.47 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.44 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
3.22 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.38 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.14 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
4.24 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
21.04 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.42 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
3.41 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.20 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
5.18 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
4.00 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.54 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
1.06 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download
753 B lrw-r--r-- 2021-08-23 19:07:08
Edit Download
2.51 KB lrw-r--r-- 2021-08-23 19:07:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).