XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
ID.php
Go to the documentation of this file.
1 <?php
2 
13 {
14 
15  // selector is NOT a valid thing to use for IDREFs, because IDREFs
16  // *must* target IDs that exist, whereas selector #ids do not.
17 
22  protected $selector;
23 
24  public function __construct($selector = false) {
25  $this->selector = $selector;
26  }
27 
28  public function validate($id, $config, $context) {
29 
30  if (!$this->selector && !$config->get('Attr.EnableID')) return false;
31 
32  $id = trim($id); // trim it first
33 
34  if ($id === '') return false;
35 
36  $prefix = $config->get('Attr.IDPrefix');
37  if ($prefix !== '') {
38  $prefix .= $config->get('Attr.IDPrefixLocal');
39  // prevent re-appending the prefix
40  if (strpos($id, $prefix) !== 0) $id = $prefix . $id;
41  } elseif ($config->get('Attr.IDPrefixLocal') !== '') {
42  trigger_error('%Attr.IDPrefixLocal cannot be used unless '.
43  '%Attr.IDPrefix is set', E_USER_WARNING);
44  }
45 
46  if (!$this->selector) {
47  $id_accumulator =& $context->get('IDAccumulator');
48  if (isset($id_accumulator->ids[$id])) return false;
49  }
50 
51  // we purposely avoid using regex, hopefully this is faster
52 
53  if (ctype_alpha($id)) {
54  $result = true;
55  } else {
56  if (!ctype_alpha(@$id[0])) return false;
57  $trim = trim( // primitive style of regexps, I suppose
58  $id,
59  'A..Za..z0..9:-._'
60  );
61  $result = ($trim === '');
62  }
63 
64  $regexp = $config->get('Attr.IDBlacklistRegexp');
65  if ($regexp && preg_match($regexp, $id)) {
66  return false;
67  }
68 
69  if (!$this->selector && $result) $id_accumulator->add($id);
70 
71  // if no change was made to the ID, return the result
72  // else, return the new id if stripping whitespace made it
73  // valid, or return false.
74  return $result ? $id : false;
75 
76  }
77 
78 }
79 
80 // vim: et sw=4 sts=4