XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
ValidatorAtom.php
Go to the documentation of this file.
1 <?php
2 
10 {
11 
13 
14  public function __construct($context, $obj, $member) {
15  $this->context = $context;
16  $this->obj = $obj;
17  $this->member = $member;
18  $this->contents =& $obj->$member;
19  }
20 
21  public function assertIsString() {
22  if (!is_string($this->contents)) $this->error('must be a string');
23  return $this;
24  }
25 
26  public function assertIsBool() {
27  if (!is_bool($this->contents)) $this->error('must be a boolean');
28  return $this;
29  }
30 
31  public function assertIsArray() {
32  if (!is_array($this->contents)) $this->error('must be an array');
33  return $this;
34  }
35 
36  public function assertNotNull() {
37  if ($this->contents === null) $this->error('must not be null');
38  return $this;
39  }
40 
41  public function assertAlnum() {
42  $this->assertIsString();
43  if (!ctype_alnum($this->contents)) $this->error('must be alphanumeric');
44  return $this;
45  }
46 
47  public function assertNotEmpty() {
48  if (empty($this->contents)) $this->error('must not be empty');
49  return $this;
50  }
51 
52  public function assertIsLookup() {
53  $this->assertIsArray();
54  foreach ($this->contents as $v) {
55  if ($v !== true) $this->error('must be a lookup array');
56  }
57  return $this;
58  }
59 
60  protected function error($msg) {
61  throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member) . ' in ' . $this->context . ' ' . $msg);
62  }
63 
64 }
65 
66 // vim: et sw=4 sts=4