mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 15:21:01 +00:00
54 lines
1009 B
PHP
54 lines
1009 B
PHP
<?php
|
|
/**
|
|
* Patch testing component for the Joomla! CMS
|
|
*
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later
|
|
*/
|
|
|
|
namespace PatchTester\View;
|
|
|
|
use PatchTester\Model\AbstractModel;
|
|
|
|
/**
|
|
* Base view for the patch testing component
|
|
*
|
|
* @since __DEPLOY_VERSION__
|
|
*/
|
|
abstract class AbstractView
|
|
{
|
|
/**
|
|
* The model object.
|
|
*
|
|
* @var AbstractModel
|
|
* @since __DEPLOY_VERSION__
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* Method to instantiate the view.
|
|
*
|
|
* @param AbstractModel $model The model object.
|
|
*
|
|
* @since __DEPLOY_VERSION__
|
|
*/
|
|
public function __construct(AbstractModel $model)
|
|
{
|
|
$this->model = $model;
|
|
}
|
|
|
|
/**
|
|
* Method to escape output.
|
|
*
|
|
* @param string $output The output to escape.
|
|
*
|
|
* @return string The escaped output.
|
|
*
|
|
* @since __DEPLOY_VERSION__
|
|
*/
|
|
public function escape($output)
|
|
{
|
|
return $output;
|
|
}
|
|
}
|