1: <?php
2:
3: namespace Deimos\Flow\Extension\TPHP;
4:
5: use Deimos\Flow\FlowFunction;
6:
7: class TPHP extends FlowFunction
8: {
9:
10: public function view()
11: {
12: if (!$this->configure->isPhpEnable())
13: {
14: return '<!-- ';
15: }
16:
17: return '<?php ';
18: }
19:
20: }