2007-05-04 22:23:16 +00:00
|
|
|
<?php
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
class SiteDescription extends Extension
|
|
|
|
{
|
|
|
|
public function onPageRequest(PageRequestEvent $event)
|
|
|
|
{
|
|
|
|
global $config, $page;
|
|
|
|
if (strlen($config->get_string("site_description")) > 0) {
|
|
|
|
$description = $config->get_string("site_description");
|
|
|
|
$page->add_html_header("<meta name=\"description\" content=\"$description\">");
|
|
|
|
}
|
|
|
|
if (strlen($config->get_string("site_keywords")) > 0) {
|
|
|
|
$keywords = $config->get_string("site_keywords");
|
|
|
|
$page->add_html_header("<meta name=\"keywords\" content=\"$keywords\">");
|
|
|
|
}
|
|
|
|
}
|
2009-01-04 08:37:08 -08:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
public function onSetupBuilding(SetupBuildingEvent $event)
|
|
|
|
{
|
|
|
|
$sb = new SetupBlock("Site Description");
|
|
|
|
$sb->add_text_option("site_description", "Description: ");
|
|
|
|
$sb->add_text_option("site_keywords", "<br>Keywords: ");
|
|
|
|
$event->panel->add_block($sb);
|
|
|
|
}
|
2007-05-04 22:23:16 +00:00
|
|
|
}
|