1
|
<?php
|
2
|
|
3
|
/**
|
4
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
5
|
*
|
6
|
* This program is free software: you can redistribute it and/or modify
|
7
|
* it under the terms of the GNU General Public License as published by
|
8
|
* the Free Software Foundation, either version 3 of the License, or
|
9
|
* (at your option) any later version.
|
10
|
*
|
11
|
* This program is distributed in the hope that it will be useful,
|
12
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
* GNU General Public License for more details.
|
15
|
*
|
16
|
* You should have received a copy of the GNU General Public License
|
17
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
18
|
*/
|
19
|
|
20
|
/**
|
21
|
* WbLinkAbstract.php
|
22
|
*
|
23
|
* @category Core
|
24
|
* @package Core_Interfaces
|
25
|
* @subpackage WbLink outputfilter
|
26
|
* @copyright Manuela v.d.Decken <manuela@isteam.de>
|
27
|
* @author Manuela v.d.Decken <manuela@isteam.de>
|
28
|
* @license http://www.gnu.org/licenses/gpl.html GPL License
|
29
|
* @version 0.0.1
|
30
|
* @revision $Revision: $
|
31
|
* @link $HeadURL: $
|
32
|
* @lastmodified $Date: $
|
33
|
* @since File available since 03.11.2013
|
34
|
* @description Interface definition for all addon/ * /WbLink.php
|
35
|
*/
|
36
|
abstract class WbLinkAbstract {
|
37
|
|
38
|
protected $oDb = null;
|
39
|
protected $oReg = null;
|
40
|
|
41
|
final public function __construct()
|
42
|
{
|
43
|
$this->oDb = WbDatabase::getInstance();
|
44
|
$this->oReg = WbAdaptor::getInstance();
|
45
|
}
|
46
|
|
47
|
abstract public function makeLinkFromTag(array $aReplacement);
|
48
|
// abstract public function generateLinkList(Template $oTpl);
|
49
|
|
50
|
|
51
|
} // end of class WbLinkAbstract
|