File: NzbHandler_Disable.php

package info (click to toggle)
spotweb 20130826%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,132 kB
  • ctags: 11,281
  • sloc: php: 31,367; xml: 1,009; sh: 148; makefile: 83
file content (20 lines) | stat: -rwxr-xr-x 439 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
class NzbHandler_Disable extends NzbHandler_abs
{
	function __construct(SpotSettings $settings, array $nzbHandling)
	{
		parent::__construct($settings, 'Disable', 'Disable', $nzbHandling);
		
	} # __construct
	
	public function processNzb($fullspot, $nzblist)
	{
		# do nothing
	} # processNzb
	
	public function generateNzbHandlerUrl($spot, $spotwebApiParam)
	{
		return '';
	} # generateNzbHandlerUrl

} # class NzbHandler_Disable