PluginProbe
Post Snippets – Custom WordPress Code Snippets Customizer / trunk
Post Snippets – Custom WordPress Code Snippets Customizer vtrunk
4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.1 1.7.2 1.7.3 1.8 1.8.1 1.8.2 1.8.3 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.8.9.1 1.8.9.2 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 All 115 releases
post-snippets / src / PostSnippets / View.php

View.php in Post Snippets – Custom WordPress Code Snippets Customizer trunk, at src/PostSnippets/View.php

32 lines 574 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace PostSnippets;
3
4 if ( ! defined( 'ABSPATH' ) ) exit;
5
6 /**
7 * View Handling.
8 *
9 */
10 class View
11 {
12 /**
13 * Render a View.
14 *
15 * @param string $view
16 * @param array $data
17 * @return string
18 */
19 public static function render($view, $data = null)
20 {
21 // Handle data
22 ($data) ? extract($data) : null;
23
24 ob_start();
25 include(plugin_dir_path(__FILE__).'../../views/'.$view.'.php');
26 $view = ob_get_contents();
27 ob_end_clean();
28
29 return $view;
30 }
31 }
32