<?php
load_class( 'Element/Element.php' );
class ElementFromText extends Element{
function ElementFromText( $arg ){
$this->Element( $arg );
}
function makeContent(){
$this->content = $this->params[ 'text' ];
}
}
?>