![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/custom-facebook-feed/inc/ |
<?php /** * Class CFF_View * * This class loads view page template files on the admin dashboard area. * * @since 4.0 */ namespace CustomFacebookFeed; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class CFF_View { /** * Base file path of the templates * * @since 4.0 */ const BASE_PATH = CFF_PLUGIN_DIR . 'admin/views/'; public function __construct() { } /** * Render template * * @param string $file * @param array $data * * @since 4.0 */ public static function render( $file, $data = array() ) { $file = str_replace( '.', '/', $file ); $file = self::BASE_PATH . $file . '.php'; if ( file_exists( $file ) ) { if ( $data !== null && ! empty( $data ) ) extract( $data ); include_once $file; } } }