PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 154
Lasso Lite – Affiliate Link Manager & Product Displays v154
158 157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 All 57 releases
simple-urls / libs / Raven / Context.php

Context.php in Lasso Lite – Affiliate Link Manager & Product Displays 154, at libs/Raven/Context.php

37 lines 516 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Storage for additional client context.
4 *
5 * @package raven
6 */
7 class Raven_Context
8 {
9 /**
10 * @var array
11 */
12 public $tags;
13 /**
14 * @var array
15 */
16 public $extra;
17 /**
18 * @var array|null
19 */
20 public $user;
21
22 public function __construct()
23 {
24 $this->clear();
25 }
26
27 /**
28 * Clean up existing context.
29 */
30 public function clear()
31 {
32 $this->tags = array();
33 $this->extra = array();
34 $this->user = null;
35 }
36 }
37