mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-10-26 17:31:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			644 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			644 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| class Example_Feed extends Plugin {
 | |
| 
 | |
| 	// Demonstrates how to query data from the parsed feed object (SimplePie)
 | |
| 	// don't enable unless debugging feed through f D hotkey or manually.
 | |
| 
 | |
| 	private $link;
 | |
| 	private $host;
 | |
| 
 | |
| 	function about() {
 | |
| 		return array(1.0,
 | |
| 			"Example feed plugin",
 | |
| 			"fox",
 | |
| 			true);
 | |
| 	}
 | |
| 
 | |
| 	function init($host) {
 | |
| 		$this->link = $host->get_link();
 | |
| 		$this->host = $host;
 | |
| 
 | |
| 		$host->add_hook($host::HOOK_FEED_PARSED, $this);
 | |
| 	}
 | |
| 
 | |
| 	function hook_feed_parsed($feed) {
 | |
| 		_debug("I'm a little feed short and stout, here's my title: " . $feed->get_title());
 | |
| 		_debug("... here's my link element: " . $feed->get_link());
 | |
| 	}
 | |
| }
 | |
| ?>
 |