yellow/system/core/core_rawhtml.php

19 lines
435 B
PHP
Raw Normal View History

2013-04-07 18:04:09 +00:00
<?php
// Copyright (c) 2013 Datenstrom, http://datenstrom.se
2013-04-07 18:04:09 +00:00
// This file may be used and distributed under the terms of the public license.
// Raw HTML parser core plugin
class Yellow_RawHtml
{
2013-04-14 22:41:04 +00:00
const Version = "0.1.1";
var $html; //generated HTML
2013-04-07 18:04:09 +00:00
2013-04-14 22:41:04 +00:00
// Parse text, dummy transformation
2013-04-07 18:04:09 +00:00
function parse($text)
{
return $this->html = $text;
}
}
2013-04-14 22:41:04 +00:00
$yellow->registerPlugin("rawhtml", "Yellow_RawHtml", Yellow_RawHtml::Version);
2013-04-07 18:04:09 +00:00
?>