blob: 13a5ddb85eaaba8db02e8dd5d14a925bd48efc27 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php
/**
* TOutputCache class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
*/
namespace Prado\Web\UI\WebControls;
/**
* TOutputCacheCalculateKeyEventParameter class
*
* TOutputCacheCalculateKeyEventParameter encapsulates the parameter data for
* <b>OnCalculateKey</b> event of {@link TOutputCache} control.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI\WebControls
* @since 3.0
*/
class TOutputCacheCalculateKeyEventParameter extends TEventParameter
{
/**
* @var string cache key to be appended to the default calculation scheme.
*/
private $_cacheKey='';
/**
* @return string cache key to be appended to the default calculation scheme.
*/
public function getCacheKey()
{
return $this->_cacheKey;
}
/**
* @param string cache key to be appended to the default calculation scheme
*/
public function setCacheKey($value)
{
$this->_cacheKey=TPropertyValue::ensureString($value);
}
}
|