summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/input.php
blob: 6f6a91365ba1813a9e6bed5a613ab4002300f221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

class Mock_Core_Input extends CI_Input {

	/**
	 * Since we use GLOBAL to fetch Security and Utf8 classes,
	 * we need to use inversion of control to mock up
	 * the same process within CI_Input class constructor.
	 *
	 * @covers CI_Input::__construct()
	 */
	public function __construct($security)
	{
		$this->_enable_csrf = (config_item('csrf_protection') === TRUE);
		$this->security     = $security;
	}

	public function fetch_from_array($array, $index = '', $xss_clean = FALSE)
	{
		return parent::_fetch_from_array($array, $index, $xss_clean);
	}

	public function __set($name, $value)
	{
		if ($name === 'ip_address')
		{
			$this->ip_address = $value;
		}
	}
}