1: <?php
2: /*
3: You may not change or alter any portion of this comment or credits
4: of supporting developers from this source code or any supporting source code
5: which is considered copyrighted (c) material of the original comment or credit authors.
6:
7: This program is distributed in the hope that it will be useful,
8: but WITHOUT ANY WARRANTY; without even the implied warranty of
9: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: */
11:
12: namespace Xoops\Core\Kernel\Dtype;
13:
14: use Xoops\Core\Kernel\Dtype;
15: use Xoops\Core\Kernel\XoopsObject;
16:
17: /**
18: * DtypeInt
19: *
20: * @category Xoops\Core\Kernel\Dtype\DtypeInt
21: * @package Xoops\Core\Kernel
22: * @author trabis <lusopoemas@gmail.com>
23: * @copyright 2011-2015 XOOPS Project (http://xoops.org)
24: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
25: * @link http://xoops.org
26: */
27: class DtypeInt extends DtypeAbstract
28: {
29: /**
30: * getVar get variable prepared according to format
31: *
32: * @param XoopsObject $obj object containing variable
33: * @param string $key name of variable
34: * @param string $format Dtype::FORMAT_* constant indicating desired formatting
35: *
36: * @return mixed
37: */
38: public function getVar(XoopsObject $obj, $key, $format)
39: {
40: $value = $obj->vars[$key]['value'];
41: switch (strtolower($format)) {
42: case 's':
43: case Dtype::FORMAT_SHOW:
44: case 'e':
45: case Dtype::FORMAT_EDIT:
46: return $this->ts->htmlSpecialChars($value);
47: case 'p':
48: case Dtype::FORMAT_PREVIEW:
49: case 'f':
50: case Dtype::FORMAT_FORM_PREVIEW:
51: return $this->ts->htmlSpecialChars($value);
52: case 'n':
53: case Dtype::FORMAT_NONE:
54: default:
55: return $value;
56: }
57: }
58:
59: /**
60: * cleanVar prepare variable for persistence
61: *
62: * @param XoopsObject $obj object containing variable
63: * @param string $key name of variable
64: *
65: * @return int
66: */
67: public function cleanVar(XoopsObject $obj, $key)
68: {
69: $value = $obj->vars[$key]['value'];
70: $value = (int)($value);
71: return $value;
72: }
73: }
74: