bludit/plugins/about/plugin.php
Diego Najar 29d06b62a3 mac
2015-03-08 14:02:59 -03:00

23 lines
275 B
PHP

<?php
class pluginAbout extends Plugin {
public function init()
{
$this->dbFields = array(
'title'=>'',
'description'=>''
);
}
public function onSiteHead()
{
$html = '<title>Blog &ndash; Layout Examples &ndash; Pure</title>';
return $html;
}
}
?>