File: Notifications_abs.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 (12 lines) | stat: -rwxr-xr-x 324 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
abstract class Notifications_abs {
	public function __construct() {
    }

	/* registreert een service bij een host
	 * Gezocht: betere omschrijving :) */
	abstract function register();

	/* verstuurt het bericht */
	abstract function sendMessage($type, $title, $body, $sourceUrl);
} # SpotNotifyService_abs