ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
Trusted.php
Go to the documentation of this file.
1<?php
2
43extends CAS_ProxyChain
45{
46
54 protected function isSizeValid (array $list)
55 {
56 return (sizeof($this->chain) <= sizeof($list));
57 }
58
59}
An exception for terminatinating execution or to throw for unit testing.
A proxy-chain definition that defines a chain up to a trusted proxy and delegates the resposibility o...
Definition: Trusted.php:45
isSizeValid(array $list)
Validate the size of the the list as compared to our chain.
Definition: Trusted.php:54
A normal proxy-chain definition that lists each level of the chain as either a string or regular expr...
Definition: ProxyChain.php:44
An interface for classes that define a list of allowed proxies in front of the current application.
Definition: Interface.php:42