303163d40d8832b5add7fc5344dc0d078a022468
[PHP-P10.git] / BotLoader / Bot.class.php
1 <?php
2 /******************************* PHP-P10 v2 *****************************
3  * Copyright (C) 2011  Philipp Kreil (pk910)                            *
4  *                                                                      *
5  * This program is free software: you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation, either version 3 of the License, or    *
8  * (at your option) any later version.                                  *
9  *                                                                      * 
10  * This program is distributed in the hope that it will be useful,      *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
13  * GNU General Public License for more details.                         *
14  *                                                                      *
15  * You should have received a copy of the GNU General Public License    *
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17  *                                                                      *
18  ************************************************************************
19  * 
20  *  BotLoader/Bot.class.php
21  *
22  * bots' parent class.
23  *
24  */
25
26 class Bot {
27         private $db_section = NULL;
28         
29         public function load($uplink, $oldDatas = null) {
30         
31         }
32         
33         public function unload($rehash = false) {
34         
35         }
36         
37         public function loop() {
38         
39         }
40         
41         public function writeDB() {
42                 
43         }
44         
45         public function readDB($value) {
46         
47         }
48         
49         public function getDBSection() {
50                 return $this->db_section;
51         }
52         
53         public function setDBSection($section) {
54                 $this->db_section = $section;
55         }
56 }
57
58 ?>