XOOPS  2.6.0
DtypeInt.php
Go to the documentation of this file.
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 
16 
28 class DtypeInt extends DtypeAbstract
29 {
37  public function getVar(XoopsObject $obj, $key, $format)
38  {
39  $value = $obj->vars[$key]['value'];
40  switch (strtolower($format)) {
41  case 's':
42  case 'show':
43  case 'e':
44  case 'edit':
45  return $this->ts->htmlSpecialChars($value);
46  case 'p':
47  case 'preview':
48  case 'f':
49  case 'formpreview':
50  return $this->ts->htmlSpecialChars($this->ts->stripSlashesGPC($value));
51  case 'n':
52  case 'none':
53  default:
54  return $value;
55  }
56  }
57 
65  public function cleanVar(XoopsObject $obj, $key, $quote = true)
66  {
67  $value = $obj->vars[$key]['value'];
68  $value = intval($value);
69  return $value;
70  }
71 }
cleanVar(XoopsObject $obj, $key, $quote=true)
Definition: DtypeInt.php:65
getVar(XoopsObject $obj, $key, $format)
Definition: DtypeInt.php:37