1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
class TimberFunctionWrapper { |
4
|
|
|
|
5
|
|
|
private $_class; |
6
|
|
|
private $_function; |
7
|
|
|
private $_args; |
8
|
|
|
private $_use_ob; |
9
|
|
|
|
10
|
|
|
public function __toString() { |
11
|
|
|
try { |
|
|
|
|
12
|
|
|
return (string)$this->call(); |
|
|
|
|
13
|
|
|
} catch (Exception $e) { |
|
|
|
|
14
|
|
|
return 'Caught exception: ' . $e->getMessage() . "\n"; |
|
|
|
|
15
|
|
|
} |
|
|
|
|
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* |
20
|
|
|
* |
21
|
|
|
* @param callable $function |
22
|
|
|
* @param array $args |
23
|
|
|
* @param bool $return_output_buffer |
24
|
|
|
*/ |
25
|
|
|
public function __construct( $function, $args = array(), $return_output_buffer = false ) { |
26
|
|
|
if( is_array( $function ) ) { |
|
|
|
|
27
|
|
|
if( (is_string( $function[0] ) && class_exists( $function[0] ) ) || gettype( $function[0] ) === 'object' ) { |
|
|
|
|
28
|
|
|
$this->_class = $function[0]; |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
if( is_string( $function[1] ) ) $this->_function = $function[1]; |
|
|
|
|
32
|
|
|
} else { |
33
|
|
|
$this->_function = $function; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
$this->_args = $args; |
37
|
|
|
$this->_use_ob = $return_output_buffer; |
38
|
|
|
|
39
|
|
|
add_filter( 'get_twig', array( &$this, 'add_to_twig' ) ); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* |
44
|
|
|
* |
45
|
|
|
* @param Twig_Environment $twig |
46
|
|
|
* @return Twig_Environment |
47
|
|
|
*/ |
48
|
|
|
public function add_to_twig( $twig ) { |
49
|
|
|
$wrapper = $this; |
50
|
|
|
|
51
|
|
|
$twig->addFunction( new Twig_SimpleFunction( $this->_function, function () use ( $wrapper ) { |
52
|
|
|
return call_user_func_array( array( $wrapper, 'call' ), func_get_args() ); |
53
|
|
|
} ) ); |
|
|
|
|
54
|
|
|
|
55
|
|
|
return $twig; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* |
60
|
|
|
* |
61
|
|
|
* @return string |
62
|
|
|
*/ |
63
|
|
|
public function call() { |
64
|
|
|
$args = $this->_parse_args( func_get_args(), $this->_args ); |
65
|
|
|
$callable = ( isset( $this->_class ) ) ? array( $this->_class, $this->_function ) : $this->_function; |
66
|
|
|
|
67
|
|
|
if ( $this->_use_ob ) { |
68
|
|
|
return TimberHelper::ob_function( $callable, $args ); |
69
|
|
|
} else { |
70
|
|
|
return call_user_func_array( $callable, $args ); |
71
|
|
|
} |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* |
76
|
|
|
* |
77
|
|
|
* @param array $args |
78
|
|
|
* @param array $defaults |
79
|
|
|
* @return array |
80
|
|
|
*/ |
81
|
|
|
private function _parse_args( $args, $defaults ) { |
82
|
|
|
$_arg = reset( $defaults ); |
83
|
|
|
|
84
|
|
|
foreach ( $args as $index => $arg ) { |
85
|
|
|
$defaults[$index] = is_null( $arg ) ? $_arg : $arg; |
|
|
|
|
86
|
|
|
$_arg = next( $defaults ); |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
return $defaults; |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
} |
93
|
|
|
|