XOOPS  2.6.0
DtypeUrl.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 DtypeUrl extends DtypeAbstract
29 {
37  function cleanVar(XoopsObject $obj, $key, $quote = true)
38  {
39  $value = trim($obj->vars[$key]['value']);
40  if ($obj->vars[$key]['required'] && $value == '') {
41  $obj->setErrors(sprintf(\XoopsLocale::F_IS_REQUIRED, $key));
42  return $value;
43  }
44  if ($value != '' && !preg_match("/^http[s]*:\/\//i", $value)) {
45  $value = 'http://' . $value;
46  }
47  if (!$obj->vars[$key]['not_gpc']) {
48  $value = $this->ts->stripSlashesGPC($value);
49  }
50  if ($quote) {
51  $value = str_replace('\\"', '"', $this->db->quote($value));
52  }
53  return $value;
54  }
55 }
db()
Definition: Xoops.php:175
cleanVar(XoopsObject $obj, $key, $quote=true)
Definition: DtypeUrl.php:37
const F_IS_REQUIRED
Definition: en_US.php:418