git-svn-id: file:///home/shish/svn/shimmie2/trunk@312 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			30 lines
		
	
	
		
			918 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			918 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Name: Site Description
 | |
|  * Author: Shish <webmaster@shishnet.org>
 | |
|  * Link: http://trac.shishnet.org/shimmie2/
 | |
|  * License: GPLv2
 | |
|  * Description: Sets the "description" meta-info in the page header, for
 | |
|  *              eg search engines to read
 | |
|  *
 | |
|  * This is currently the only example of a user-contributed extension~
 | |
|  */
 | |
| class SiteDescription extends Extension {
 | |
| 	public function receive_event($event) {
 | |
| 		if(is_a($event, 'PageRequestEvent')) {
 | |
| 			global $config;
 | |
| 			if(strlen($config->get_string("site_description")) > 0) {
 | |
| 				$description = $config->get_string("site_description");
 | |
| 				$event->page->add_header("<meta name=\"description\" content=\"$description\">");
 | |
| 			}
 | |
| 		}
 | |
| 		if(is_a($event, 'SetupBuildingEvent')) {
 | |
| 			$sb = new SetupBlock("Site Description");
 | |
| 			$sb->add_longtext_option("site_description");
 | |
| 			$event->panel->add_block($sb);
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| add_event_listener(new SiteDescription());
 | |
| ?>
 |