Files
iTop/pages/php-ofc-library/ofc_title.php
Denis Flaven ec48618573 Initial import on SourceForge
SVN:code[2]
2009-03-13 17:13:48 +00:00

15 lines
237 B
PHP

<?php
class title
{
function title( $text='' )
{
$this->text = $text;
}
function set_style( $css )
{
$this->style = $css;
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
}
}