/var/www/html_it_bk/wp-content/plugins/loco-translate/src/mvc/View.php


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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<?php

/**
 * View renderer
 * @property-read string $_content
 * @property-read string|null $_trash
 */
class Loco_mvc_View implements IteratorAggregate {

    
/**
     * @var Loco_mvc_ViewParams
     */
    
private $scope;
    
    
/**
     * View that is decorating current view
     * @var self
     */
    
private $parent;
    
    
/**
     * Current template as full path to PHP file
     * @var string
     */
    
private $template;
    
    
/**
     * Current working directory for finding templates by relative path
     * @var string
     */
    
private $cwd;

    
/**
     * Name of current output buffer
     * @var string
     */
    
private $block;


    
/**
     * @internal
     */
    
public function __construct( array $args = [] ){
        
$this->scope = new Loco_mvc_ViewParams$args );
        
$this->cwd loco_plugin_root().'/tpl';
    }
    
    
    
/**
     * Change base path for template paths
     * @param string $path relative to current directory
     * @return Loco_mvc_View 
     */
    
public function cd$path ){
        if( 
$path && '/' === substr($path,0,1) ){
            
$this->cwd untrailingslashitloco_plugin_root().'/tpl'.$path );
        }
        else {
            
$this->cwd untrailingslashit$this->cwd.'/'.$path );
        }
        return 
$this;
    }    
    

    
/**
     * @internal
     * Clean up if something abruptly stopped rendering before graceful end
     */
    
public function __destruct(){
        if( 
$this->block ){
            
ob_end_clean();
        }
    }


    
/**
     * Render error screen HTML
     * @return string
     */
    
public static function renderErrorLoco_error_Exception $e ){
        
$view = new Loco_mvc_View;
        try {
            
$view->set'error'$e );
            return 
$view->render$e->getTemplate() );
        }
        catch( 
Exception $e ){
            return 
'<h1>'.esc_html$e->getMessage() ).'</h1>';
        }
    }


    
/**
     * Make this view a child of another template. i.e. decorate this with that.
     * Parent will have access to original argument scope, but separate from now on
     * @param string $tpl
     * @return self the parent view
     */
    
private function extend$tpl ){
        
$this->parent = new Loco_mvc_View;
        
$this->parent->cwd $this->cwd;
        
$this->parent->setTemplate$tpl );
        return 
$this->parent;
    }


    
/**
     * After start is called any captured output will be placed in the named variable
     * @param string $name
     * @return void
     */
    
private function start$name ){
        
$this->stop();
        
$this->scope[$name] = null;
        
$this->block $name;
    }


    
/**
     * When stop is called, buffered output is saved into current variable for output by parent template, or at end of script.
     * @return void
     */
    
private function stop(){
        
$content ob_get_contents();
        
ob_clean();
        if( 
$b $this->block ){
            if( isset(
$this->scope[$b]) ){
                
$content $this->scope[$b].$content;
            }
            
$this->scope[$b] = new _LocoViewBuffer($content);
        }
        
$this->block '_trash';
    }


    
/**
     * {@inheritDoc}
     */
    
#[ReturnTypeWillChange]
    public function 
getIterator(){
        return 
$this->scope;
    }


    
/**
     * @internal
     * @param string $prop
     * @return mixed
     */
    
public function __get$prop ){
        return 
$this->has($prop) ? $this->get($prop) : null;
    }


    
/**
     * @param string $prop
     * @return bool
     */
    
public function has$prop ){
        return 
$this->scope->offsetExists($prop);
    }


    
/**
     * Get property after checking with self::has
     * @param string $prop
     * @return mixed
     */
    
public function get$prop ){
        return 
$this->scope[$prop];
    }


    
/**
     * Set a view argument
     * @param string $prop
     * @param mixed $value
     * @return self
     */
    
public function set$prop$value ){
        
$this->scope[$prop] = $value;
        return 
$this;
    }



    
/**
     * Main entry to rendering complete template
     * @param string $tpl template name excluding extension
     * @param array|null $args extra arguments to set in view scope
     * @param self|null $parent parent view rendering this view
     * @return string
     */
    
public function render$tpl, array $args nullLoco_mvc_View $parent null ){
        if( 
$this->block ){
            return 
$this->fork()->render$tpl$args$this );
        }
        
$this->setTemplate($tpl);
        if( 
$parent && $this->template === $parent->template ){
            throw new 
Loco_error_Exception('Avoiding infinite loop');
        }
        if( 
is_array($args) ){
            foreach( 
$args as $prop => $value ){
                
$this->set($prop$value);
            }
        }
        
ob_start();
        
$content $this->buffer();
        
ob_end_clean();
        return 
$content;
    }



    
/**
     * Do actual render of currently validated template path
     * @return string content not captured in sub-blocks
     */
    
private function buffer(){
        
$this->start('_trash');
        
$this->execTemplate$this->template );
        
$this->stop();
        
$this->block null;
        
// decorate via parent view if there is one
        
if( $this->parent ){
            
$this->parent->scope = clone $this->scope;
            
$this->parent->set('_content'$this->_trash );
            return 
$this->parent->buffer();
        }
        
// else at the root of view chain
        
return (string) $this->_trash;
    }



    
/**
     * Set current template
     * @param string $tpl Path to template, excluding file extension
     */
    
public function setTemplate$tpl ){
        
$file = new Loco_fs_File$tpl.'.php' );
        
$file->normalize$this->cwd );
        if( ! 
$file->exists() ){
            
$debug str_replaceloco_plugin_root().'/'''$file->getPath() );
            throw new 
Loco_error_Exception'Template not found: '.$debug );
        }
        
$this->cwd $file->dirname();
        
$this->template $file->getPath();
    }


    
/**
     * @return Loco_mvc_View
     */
    
private function fork(){
        
$view = new Loco_mvc_View;
        
$view->cwd $this->cwd;
        
$view->scope = clone $this->scope;
        
        return 
$view;
    }


    
/**
     * Do actual runtime template include
     * @param string $template
     * @return void
     */
    
private function execTemplate$template ){
        
$params $this->scope;
        
extract$params->getArrayCopy() );
        include 
$template;
    }


    
/**
     * Link generator
     * @param string $route page route, e.g. "config"
     * @param array $args optional page arguments
     * @return Loco_mvc_ViewParams
     */
    
public function route$route, array $args = [] ){
        return new 
Loco_mvc_ViewParams(  [
            
'href' => Loco_mvc_AdminRouter::generate$route$args ),
        ] );
    }


    
/**
     * Shorthand for `echo esc_html( sprintf( ...`
     * @param string $text
     * @return string
     */
    
private static function e$text ){
        if( 
func_num_args() ){
            
$args func_get_args();
            
$text call_user_func_array'sprintf'$args );
        }
        echo 
htmlspecialchars$textENT_COMPAT'UTF-8' );
        return 
'';
    }

}



/**
 * @internal
 */
class _LocoViewBuffer {
    
    private 
$s;

    public function 
__construct$s ){
        
$this->$s;
    }

    public function 
__toString(){
        return 
$this->s;
    }    
    
}