1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10 11
12 class bbMysql_readEntry extends apiModule
13 {
14 protected $rpcMethod = 'bbMysql::readEntry';
15
16 17 18 19 20 21
22 public function setName($name)
23 {
24 return $this->addParam('name', (string) $name);
25 }
26
27 28 29 30 31 32 33
34 public function setOeid($oeid)
35 {
36 return $this->addParam('oeid', (integer) $oeid);
37 }
38
39 40 41 42 43 44
45 public function setSeid($seid)
46 {
47 return $this->addParam('seid', (integer) $seid);
48 }
49 }