ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
URIScheme.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
12  public $default_port = null;
13 
18  public $browsable = false;
19 
24  public $hierarchical = false;
25 
35  public function validate(&$uri, $config, $context) {
36  if ($this->default_port == $uri->port) $uri->port = null;
37  return true;
38  }
39 
40 }
41 
42 // vim: et sw=4 sts=4