1: <?php
2:
3: 4: 5: 6:
7:
8: namespace Nette\Reflection;
9:
10: use Nette;
11: use Nette\Utils\ObjectMixin;
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: class GlobalFunction extends \ReflectionFunction
39: {
40:
41: private $value;
42:
43:
44: public function __construct($name)
45: {
46: parent::__construct($this->value = $name);
47: }
48:
49:
50: 51: 52:
53: public function toCallback()
54: {
55: return new Nette\Callback($this->value);
56: }
57:
58:
59: public function __toString()
60: {
61: return $this->getName() . '()';
62: }
63:
64:
65: public function getClosure()
66: {
67: return PHP_VERSION_ID < 50400
68: ? Nette\Utils\Callback::closure($this->value)
69: : parent::getClosure();
70: }
71:
72:
73:
74:
75:
76: 77: 78:
79: public function getExtension()
80: {
81: return ($name = $this->getExtensionName()) ? new Extension($name) : NULL;
82: }
83:
84:
85: 86: 87:
88: public function getParameters()
89: {
90: foreach ($res = parent::getParameters() as $key => $val) {
91: $res[$key] = new Parameter($this->value, $val->getName());
92: }
93: return $res;
94: }
95:
96:
97:
98:
99:
100: 101: 102: 103: 104:
105: public function hasAnnotation($name)
106: {
107: $res = AnnotationsParser::getAll($this);
108: return !empty($res[$name]);
109: }
110:
111:
112: 113: 114: 115: 116:
117: public function getAnnotation($name)
118: {
119: $res = AnnotationsParser::getAll($this);
120: return isset($res[$name]) ? end($res[$name]) : NULL;
121: }
122:
123:
124: 125: 126: 127:
128: public function getAnnotations()
129: {
130: return AnnotationsParser::getAll($this);
131: }
132:
133:
134: 135: 136: 137:
138: public function getDescription()
139: {
140: return $this->getAnnotation('description');
141: }
142:
143:
144:
145:
146:
147: public function __call($name, $args)
148: {
149: return ObjectMixin::call($this, $name, $args);
150: }
151:
152:
153: public function &__get($name)
154: {
155: return ObjectMixin::get($this, $name);
156: }
157:
158:
159: public function __set($name, $value)
160: {
161: ObjectMixin::set($this, $name, $value);
162: }
163:
164:
165: public function __isset($name)
166: {
167: return ObjectMixin::has($this, $name);
168: }
169:
170:
171: public function __unset($name)
172: {
173: ObjectMixin::remove($this, $name);
174: }
175:
176: }
177: